美文网首页
判断字符串中字节数(中英文)

判断字符串中字节数(中英文)

作者: 半夏吖 | 来源:发表于2017-12-01 03:27 被阅读9次
// 判断字符串长度(包含中英文)
- (int)convertToInt:(NSString *)string
{
    int strlength = 0;
    char* p = (char*)[string cStringUsingEncoding:NSUnicodeStringEncoding];
    for (int i=0 ; i<[string lengthOfBytesUsingEncoding:NSUnicodeStringEncoding] ;i++) {
        if (*p) {
            p++;
            strlength++;
        }
        else {
            p++;
        }
    }
    return strlength;
}
// 判断字符串包含汉字的个数
- (int)chineseNumber:(NSString *)str
{
    int t = 0;
    for ( int i = 0; i < str.length; i++) {
        unichar ch = [str characterAtIndex:i];
        if (0x4e00 < ch  && ch < 0x9fff)
        {
            t++;

        }
    }
    return t;
}

相关文章

网友评论

      本文标题:判断字符串中字节数(中英文)

      本文链接:https://www.haomeiwen.com/subject/yehibxtx.html