字符串遍历和长度的三种方法
Posted 微笑永不打烊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串遍历和长度的三种方法相关的知识,希望对你有一定的参考价值。
//字符串的长度(3种方法)
func demo1() {
let str = "hello world你好"
// 1>返回指定编码的对应的字节数量
//URF8的编码(0~4个),每个汉字是3个字节
print(str.lengthOfBytes(using: .utf8))
// 2>字符串长度- 返回字符的个数《推荐使用》
print(str.characters.count)
// 3>使用NSString中转
/**
str as NSString
OC的写法(CZTabelCell *)[tableView dequeue
Swift 中可以使用“值 as 类型” 类型转换
*/
let ocStr = str as NSString
print(ocStr.length)
}
// MARK: -字符串的遍历
func demo() {
// NNString不支持以下方式遍历
let str: String = "hello"
for c in str.characters {
print(c)
}
}
以上是关于字符串遍历和长度的三种方法的主要内容,如果未能解决你的问题,请参考以下文章