正则匹配中文字符

前端之家收集整理的这篇文章主要介绍了正则匹配中文字符前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
String regex = "[\\\u4E00-\\\u9FA5]+";
    Matcher matcher = Pattern.compile(regex).matcher("是");
    if(matcher.find()){
        System.out.println(true);
    }
原文链接:https://www.f2er.com/regex/359809.html

猜你在找的正则表达式相关文章