摘要: /** * 是否包含中文 **/ public static boolean isContainsChinese(String str) { String regEx = "[\u4e00-\u9fa5]"; Pattern pat = Pattern.compile(regEx); Matcher 阅读全文
posted @ 2017-01-20 18:09 1582277142 阅读(405) 评论(0) 推荐(0)