Swift - 13 - 字符串和Character

//: Playground - noun: a place where people can play

import UIKit

var str = "hi"

// 字符串拼接
str += ", rinpe"
str += ", lili"

// 创建一个空的字符串
var nullStr = String()
var nullStr2 = ""

// 判断一个字符串是否为空
nullStr.isEmpty

// 字符串遍历
for string in str.characters {
    string
}

// Charater
var ch:Character = "🐷"
str.append(ch)

// 获取字符串的长度
str.characters.count

// 定义一个OC的字符串
var str2:NSString = str
str2.length

// 从上面的结果能看出, swift对字符串长度的计算更为准确

  

posted @ 2015-12-16 12:18  Rinpe  阅读(154)  评论(0编辑  收藏  举报