// 精准匹配 let text ="Hello, World!" print(text.contains("World")) // true
/// 忽略大小写匹配 /// 需要简单的本地化字符串匹配,但不涉及排序规则等复杂逻辑 let text ="Hello, SwiftUI!" let searchQuery ="swift"
let result = text.localizedCaseInsensitiveContains(searchQuery) print(result) // true
/// 文本匹配 /// 对大小写不敏感(Hello, SwiftUI! 中的 Swift 与 swift 能匹配) /// 能正确处理用户语言环境下的特定字符匹配,比localizedCaseInsensitiveContains高级 let text ="Hello, SwiftUI!" let searchQuery ="swift"
let result = text.localizedStandardContains(searchQuery) print(result) // true
检查开头或结尾是否为指定字符串
hasPrefix(_:): 检查字符串是否以指定前缀开头
1 2
let text ="Hello, World!" print(text.hasPrefix("Hello")) // true
hasSuffix(_:): 检查字符串是否以指定后缀结尾
1 2
let text ="Hello, World!" print(text.hasSuffix("!")) // true
使用 Substring 分割字符串
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
let string ="aaa/bbb/ccc/dddd" let arraySubstrings: [Substring] = string.split(separator: "/")
var arrayStrings: [String] = [] for item in arraySubstrings { arrayStrings.append("\(item)") //arrayStrings.append(String(item)) }
// 或者 let arrayStrings: [String] = arraySubstrings.compactMap { "\($0)" }