當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Swift String init(_:)用法及代碼示例


用法一

初始化器

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+

相關用法


注:本文由純淨天空篩選整理自apple.com大神的英文原創作品 String init(_:)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。