-
Range<String.Index>(start:, end:) 范围函数(泛型) fromIndex = advance(str.startIndex, 14) 从字符串str的14的位置开始到字符串结束的范围 str.substringFromIndex(fromIndex) 字符串取子串函数 str.substringWithRange(Range<String.Index>(start:toIndex, end:fromIndex)) 取范围内的子串(前闭后开区间) str.insert("!", atIndex: insertIndex) 在指定位置插入字符i str.removeAtIndex(insertIndex) 删除指定位置的字符 str.removeRange(Range<String.Index>(start:toIndex, end:fromIndex))查看全部
-
学习了查看全部
-
import Foundation str.capitalizedString 单次首字母大写 str.componentsSeparatedByString(" ") 分割字符串 str.componentsSeparatedByCharactersInSet(NsCharacterSet(charactersInString:" !-")) 各种字符分割字符串 str.bridgeToObjectiveC() 转换成ObjectiveC字符串对象 str.bridgeToObjectiveC().rangeOfString("swift") 查看swift在str里面索引跟长度 如(16,5)查看全部
-
import Foundation str.capitalizedString, str.uppercaseString, str.lowercaseString查看全部
-
5. 数组let chapterNames = ["第一章", "第二章"] 6. 字符串,hasPrefix, hasSuffix查看全部
-
4. println("Int:\(imInt)\n"), 格式化字符串。查看全部
-
3. string + character的方法是: 字符串.append(字符)查看全部
-
1. Character,字符类型,类似于C里面的char 2. countElements(str),计算字符串长度查看全部
-
明明写着let你说把这个变量赋值为:true和false!我一听就迷茫了!查看全部
-
Arry(courses.keys) [Int](courses.keys) 强制类型转换查看全部
-
属性 keys, values查看全部
-
闭包简化查看全部
-
UIView UILabel(frame: CGRectMake()) UIFont(name:"Arial", size: 24.0) UIColor.balckColor() colorNameLabel.textAlignment = NSTextAlignment.Right addSubView查看全部
-
控制转移查看全部
-
switch高级用法查看全部
举报
0/150
提交
取消