用法一
实例下标
subscript(_:)
访问集合元素的连续子范围。
声明
subscript(r: Range<String.Index>) -> Substring { get }
参数
bounds
一系列集合的索引。范围的边界必须是集合的有效索引。
概述
访问的切片对与原始集合使用的相同元素使用相同的索引。始终使用切片的 startIndex
属性,而不是假设其索引从特定值开始。
此示例演示获取字符串数组的切片,查找切片中字符串之一的索引,然后在原始数组中使用该索引。
let streets = ["Adams", "Bryant", "Channing", "Douglas", "Evarts"]
let streetsSlice = streets[2 ..< streets.endIndex]
print(streetsSlice)
// Prints "["Channing", "Douglas", "Evarts"]"
let index = streetsSlice.firstIndex(of: "Evarts") // 4
print(streets[index!])
// Prints "Evarts"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+, Swift 4.0+
用法二
实例下标
subscript(_:)
访问由范围表达式指定的集合元素的连续子范围。
声明
subscript<R>(r: R) -> Self.SubSequence where R : RangeExpression, Self.Index == R.Bound { get }
参数
bounds
一系列集合的索引。范围的边界必须是集合的有效索引。
概述
范围表达式转换为相对于该集合的具体子范围。例如,将 PartialRangeFrom
范围表达式与数组一起使用会访问从范围表达式开头到数组结尾的子范围。
let streets = ["Adams", "Bryant", "Channing", "Douglas", "Evarts"]
let streetsSlice = streets[2...]
print(streetsSlice)
// ["Channing", "Douglas", "Evarts"]
访问的切片对与原始集合使用的相同元素使用相同的索引。此示例在 streetsSlice
中搜索切片中的字符串之一,然后在原始数组中使用该索引。
let index = streetsSlice.firstIndex(of: "Evarts") // 4
print(streets[index!])
// "Evarts"
始终使用切片的 startIndex
属性,而不是假设其索引从特定值开始。尝试使用切片索引范围之外的索引访问元素可能会导致运行时错误,即使该索引对原始集合有效。
print(streetsSlice.startIndex)
// 2
print(streetsSlice[2])
// "Channing"
print(streetsSlice[0])
// error: Index out of bounds
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
用法三
实例下标
subscript(_:)
访问给定位置的字符。
声明
subscript(i: String.Index) -> Character { get }
参数
i
字符串的有效索引。
i
必须小于字符串的结束索引。
概述
您可以使用相同的索引来为字符串及其子字符串下标。例如,此代码查找第一个空格后的第一个字母:
let str = "Greetings, friend! How are you?"
let firstSpace = str.firstIndex(of: " ") ?? str.endIndex
let substr = str[firstSpace...]
if let nextCapital = substr.firstIndex(where: { $0 >= "A" && $0 <= "Z" }) {
print("Capital after a space: \(str[nextCapital])")
}
// Prints "Capital after a space: H"
可用版本
iOS 8.0+, iPadOS 8.0+, macOS 10.10+, Mac Catalyst 13.0+, tvOS 9.0+, watchOS 2.0+
相关用法
- Swift String suffix(from:)用法及代码示例
- Swift String suffix(_:)用法及代码示例
- Swift String sorted()用法及代码示例
- Swift String starts(with:)用法及代码示例
- Swift String shuffled(using:)用法及代码示例
- Swift String split(maxSplits:omittingEmptySubsequences:whereSeparator:)用法及代码示例
- Swift String sorted(by:)用法及代码示例
- Swift String shuffled()用法及代码示例
- Swift String split(separator:maxSplits:omittingEmptySubsequences:)用法及代码示例
- Swift String init()用法及代码示例
- Swift String init(_:radix:uppercase:)用法及代码示例
- Swift String init(cString:)用法及代码示例
- 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 init(reflecting:)用法及代码示例
- Swift String first用法及代码示例
- Swift String lowercased()用法及代码示例
- Swift String dropLast(_:)用法及代码示例
- Swift String first(where:)用法及代码示例
- Swift String removeFirst(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 String subscript(_:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。