美文网首页
ios 判断字符串是否为中文

ios 判断字符串是否为中文

作者: UILable攻城狮 | 来源:发表于2017-11-10 09:48 被阅读0次
    + (BOOL)isChineseWithStr:(NSString *)str
    {
        for(int i=0; i< [str length];i ++)
        {
            int a = [str characterAtIndex:i];
            
            if( a > 0x4e00 && a < 0x9fff)
            {
                return YES;
            }
            else
            {
                return NO;
            }
        }
        return NO;
    }
    

    相关文章

      网友评论

          本文标题:ios 判断字符串是否为中文

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