如何在Swift 2.0中获取String的长度?

时间:2015-06-26 09:03:08

标签: string swift swift2

到目前为止:

let string = "my example string"
if count(string) >= 3 { ... }

但现在我收到了一个错误:

  

count不可用:访问集合上的count属性。类型String不符合协议CollectionType

3 个答案:

答案 0 :(得分:59)

哦,很简单:

string.characters.count

答案 1 :(得分:1)

再次更简化的版本

在Swift 4.0中

let strLength = string.count

答案 2 :(得分:0)

应该是这样

let string = "my example string"
let length = string.characters.count

因为在Swift 2.0中, Apple 将全局功能更改为协议扩展。