标签:ati logs 中文 com bool .com code ring style
/** * 判断是否包含汉字 * @param str * @return */ public static boolean isContainChinese(String str) { Pattern p = Pattern.compile("[\u4e00-\u9fa5]"); Matcher m = p.matcher(str); if (m.find()) { return true; } return false; }
标签:ati logs 中文 com bool .com code ring style
原文地址:http://www.cnblogs.com/go4mi/p/6424082.html