字符串是否包含中文
Posted 1582277142
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串是否包含中文相关的知识,希望对你有一定的参考价值。
/**
* 是否包含中文
**/
public static boolean isContainsChinese(String str) {
String regEx = "[\u4e00-\u9fa5]";
Pattern pat = Pattern.compile(regEx);
Matcher matcher = pat.matcher(str);
boolean flg = false;
if (matcher.find()) {
flg = true;
}
return flg;
}
以上是关于字符串是否包含中文的主要内容,如果未能解决你的问题,请参考以下文章