Swift 2.0 - String Index
2016-04-16 本文已影响50人
sunlitamo
Overview:
在Swift中,字符串是基于Unicode的,因此以下方式去获取字符串中的一个字符。
str[0] X str.characters[0] X
为了能够方便的索引字符串中的字符,并且兼顾Swift中字符串是基于Unicode的这个事实,Swift 封装了一个新的类型:String.Index
Example
var str = "hello,world" // 该字符串的第一个Index str[str.startIndex] -->Output: "h" // 该字符串的最后一个Index (注意:单单endIndex 是字符串结束位置的索引,不是字符串的最后的一个Index。) str[str.endIndex.precedesessor()] -->Output: "d" // 该字符串的第四个Index str[str.startIndex.advancedBy(4)] -->Output: "o" // 该字符串的倒数第四个Index str[str.endIndex.advancedBy(-4)] -->Output: "o" // 该字符串的第四个Index的上一个Index str[str.startIndex.advancedBy(4).predecessor()] -->Output: "l" // 该字符串的第四个Index的后一个Index str[str.startIndex.advancedBy(4).successor()] -->Output: ","
注:这里仅仅列举出了部分有代表性的用法,其他关于Index用法还请各位同学自行探索 😄 。