Swift 2.0 substringwithrange

前端之家收集整理的这篇文章主要介绍了Swift 2.0 substringwithrange前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有 Xcode 7 gm,swift 2.0是什么等效的表达式:
Let myNSString = "full text container"
myNSString.substringWithRange(NSRange(location: 0,length: 3))

有了新的字符串类吗?

试试这个:
let myString = "full text container"
myString[myString.startIndex..<myString.startIndex.advancedBy(3)]
原文链接:https://www.f2er.com/swift/318896.html

猜你在找的Swift相关文章