判断输入是否中文

-(BOOL)isChinese{

    NSString *match=@"(^[\u4e00-\u9fa5]+$)";

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF matches %@", match];

    return [predicate evaluateWithObject:self];

}


你可能感兴趣的:(NSString,U9)