码迷,mamicode.com
首页 > 其他好文 > 详细

字符串是否包含中文

时间:2017-01-20 19:21:03      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:find   .com   strong   false   boolean   ret   stat   sch   contain   

/**
* 是否包含中文
**/
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;
}

字符串是否包含中文

标签:find   .com   strong   false   boolean   ret   stat   sch   contain   

原文地址:http://www.cnblogs.com/haorun/p/6323577.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!