正则表达式 [\u4e00-\u9fa5];\u4e00-\u9fa5 代表了符合汉字GB18030规范的字符集,
因为为了兼容,所有字符都以unicode编码实现,汉字也不例外。 static String regEx = "[\u4e00-\u9fa5]"; static Pattern p = Pattern.compile(regEx);
原文链接:https://www.f2er.com/regex/362877.html正则表达式 [\u4e00-\u9fa5];\u4e00-\u9fa5 代表了符合汉字GB18030规范的字符集,
因为为了兼容,所有字符都以unicode编码实现,汉字也不例外。 static String regEx = "[\u4e00-\u9fa5]"; static Pattern p = Pattern.compile(regEx);
原文链接:https://www.f2er.com/regex/362877.html