用法一
初始化器
init(_:)
創建對應於給定 Unicode 標量集合的字符串。
聲明
init(_ unicodeScalars: String.UnicodeScalarView)
參數
unicodeScalars
Unicode 標量值的集合。
詳述
您可以使用此初始化程序從另一個字符串的 unicodeScalars
視圖的切片創建一個新字符串。
let picnicGuest = "Deserving porcupine"
if let i = picnicGuest.unicodeScalars.firstIndex(of: " ") {
let adjective = String(picnicGuest.unicodeScalars[..<i])
print(adjective)
}
// Prints "Deserving"
adjective
常量是通過使用 picnicGuest.unicodeScalars
視圖的切片調用此初始化程序來創建的。
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
用法二
初始化器
init(_:)
創建一個包含給定序列中字符的新字符串。
聲明
init<S>(_ other: S) where S : LosslessStringConvertible, S : Sequence, S.Element == Character
參數
other
一個字符串實例或另一個字符序列。
詳述
您可以使用此初始化程序根據對字符串字符的一個或多個集合操作的結果創建一個新字符串。例如:
let str = "The rain in Spain stays mainly in the plain."
let vowels: Set<Character> = ["a", "e", "i", "o", "u"]
let disemvoweled = String(str.lazy.filter { !vowels.contains($0) })
print(disemvoweled)
// Prints "Th rn n Spn stys mnly n th pln."
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
用法三
初始化器
init(_:)
創建一個包含給定序列中字符的新字符串。
聲明
init<S>(_ characters: S) where S : Sequence, S.Element == Character
參數
characters
一個字符串實例或另一個字符序列。
詳述
您可以使用此初始化程序根據對字符串字符的一個或多個集合操作的結果創建一個新字符串。例如:
let str = "The rain in Spain stays mainly in the plain."
let vowels: Set<Character> = ["a", "e", "i", "o", "u"]
let disemvoweled = String(str.lazy.filter { !vowels.contains($0) })
print(disemvoweled)
// Prints "Th rn n Spn stys mnly n th pln."
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相關用法
- Swift String init(_:radix:uppercase:)用法及代碼示例
- Swift String init()用法及代碼示例
- Swift String init(cString:)用法及代碼示例
- Swift String init(reflecting:)用法及代碼示例
- Swift String init(stringLiteral:)用法及代碼示例
- Swift String init(describing:)用法及代碼示例
- Swift String init(repeating:count:)用法及代碼示例
- Swift String init(unsafeUninitializedCapacity:initializingUTF8With:)用法及代碼示例
- Swift String init(validatingUTF8:)用法及代碼示例
- Swift String init(stringInterpolation:)用法及代碼示例
- Swift String insert(contentsOf:at:)用法及代碼示例
- Swift String index(_:offsetBy:limitedBy:)用法及代碼示例
- Swift String index(_:offsetBy:)用法及代碼示例
- Swift String indices用法及代碼示例
- Swift String insert(_:at:)用法及代碼示例
- Swift String isEmpty用法及代碼示例
- Swift String suffix(from:)用法及代碼示例
- Swift String removeAll(where:)用法及代碼示例
- Swift String ...(_:_:)用法及代碼示例
- Swift String last用法及代碼示例
- Swift String contains(where:)用法及代碼示例
- Swift String prefix(through:)用法及代碼示例
- Swift String contains(_:)用法及代碼示例
- Swift String firstIndex(where:)用法及代碼示例
- Swift String first用法及代碼示例
注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 String init(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。