显然在
Swift 3之前,一个Range< String.Index>有一个伯爵财产.在迁移到Swift 3时,我发现这个计数属性现在已经消失了.如何计算Swift 3中2 String.Indexes之间的距离?
从Swift 3开始,所有索引计算都由集合本身完成,
在Swift evolution上比较 SE-0065 – A New Model for Collections and Indices.
原文链接:https://www.f2er.com/swift/319502.html在Swift evolution上比较 SE-0065 – A New Model for Collections and Indices.
例:
let string = "abc 1234 def" if let range = string.range(of: "\\d+",options: .regularExpression) { let count = string.distance(from: range.lowerBound,to: range.upperBound) print(count) // 4 }
实际上,String不是Swift 3中的集合,但它有这些方法
以及它们被转发到字符串CharacterView.
你得到相同的结果
let count = string.characters.distance(from: range.lowerBound,to: range.upperBound)
从Swift 4开始,字符串就是集合(再次).