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

关于判断字符串长度的方法

时间:2015-09-20 17:34:11      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

关于判断字符串长度的方法   

 
 
 
在一个中英文混合的字符串中,怎么判断它的长度,按英文占一个字节,汉字两个字节的标准
比如“你好ni”,长度就是6
        “abcd” 长度是4
有什么好办法吗,介绍一下,谢谢

 

-(NSUInteger) unicodeLengthOfString: (NSString *) text {
    NSUInteger asciiLength = 0;

    for (NSUInteger i = 0; i < text.length; i++) {


        unichar uc = [text characterAtIndex: i];

        asciiLength += isascii(uc) ? 1 : 2;
    }

    NSUInteger unicodeLength = asciiLength / 2;

    if(asciiLength % 2) {
        unicodeLength++;
    }

    return unicodeLength;
}

关于判断字符串长度的方法

标签:

原文地址:http://www.cnblogs.com/dexjay/p/4823619.html

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