美文网首页
限制不能输入中文

限制不能输入中文

作者: Bruin_熊先森 | 来源:发表于2020-01-08 18:20 被阅读0次

    NSString*str = fd.text;

    for(inti =0; i

            NSString*string = [strsubstringFromIndex:i];

            NSString *regex = @"[\u4e00-\u9fa5]{0,}$"; // 中文

            // 2、拼接谓词

            NSPredicate *predicateRe1 = [NSPredicate predicateWithFormat:@"self matches %@", regex];

            // 3、匹配字符串

            BOOLresualt = [predicateRe1evaluateWithObject:string];

            if(resualt){

                str =  [strstringByReplacingOccurrencesOfString:[str substringFromIndex:i] withString:@""];

        }

    }

相关文章

网友评论

      本文标题:限制不能输入中文

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