import UIKit
/* Swift3.0 String操作 */
/* 1.初始化字符串 */
let h = String(repeating: "hello", count: 3)
/* 2.大小写转换 */
let mixedCase = "AbcDef"
let upper = mixedCase.uppercased()
let lower = mixedCase.lowercased()
/* 3、使用索引访问集合 */
let hello = "hello"
let helloStartIndex = hello.characters.startIndex
let startIndex = hello.startIndex
let endIndex = hello.endIndex
// 通过增、减去访问字符串
hello[hello.startIndex] // 第一个
hello[hello.index(after: startIndex)] // 第一个后面一个
hello[hello.index(before: endIndex)] // 最后一个
hello[hello.index(startIndex, offsetBy: 1)] // 第一个往后一个
hello[hello.index(endIndex, offsetBy: -4)] // 最后一个往前4个
/* 4、Range */
let fqdn = "useyourloaf.com"
let tldEndIndex = fqdn.endIndex // 结束
let tldStartIndex = fqdn.index(tldEndIndex, offsetBy: -3) // 开始
let range = Range(uncheckedBounds: (lower: tldStartIndex, upper: tldEndIndex))
fqdn[range]
// 创建一个范围最简单的方法就是使用 ..< 和 ... 操作符:
let endOfDomain = fqdn.index(endIndex, offsetBy: -4)
let rangeOfDomain = fqdn.startIndex ..< endOfDomain
fqdn[rangeOfDomain]
/* 5、查找和返回子串范围 */
if let rangOfTLD = fqdn.range(of: "com") {
let tld = fqdn[rangOfTLD]
}
Swift-String常用操作的改变
最新推荐文章于 2024-11-08 06:10:25 发布