//functions swift
func countLetters(in string: String) {
print("The string \(string) has \(string.count) letters.")
}
countLetters(in: "Hello")
我不明白为什么它说计数不可用:没有普遍好的答案,请参阅文档注释以进行讨论。
答案 0 :(得分:3)
您的Swift版本可能太旧了。 count
属性直到Swift 4才出现。在这种情况下,您可以说string.characters.count
。