码迷,mamicode.com
首页 > 其他好文 > 详细

字符串遍历和长度的三种方法

时间:2016-11-12 16:18:58      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:遍历   for   返回   rac   cell   count   方法   字节   cst   

//字符串的长度(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)

        }

        

    }

  

字符串遍历和长度的三种方法

标签:遍历   for   返回   rac   cell   count   方法   字节   cst   

原文地址:http://www.cnblogs.com/liyanyan/p/6056639.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!