标签:pattern ISE ati 正则 div match color @param 用例
此篇博客用来记录一些常用的正则表达式
/** * 判断是否是全中文汉字 * * @param str * @return */ public static boolean isChinese(String str) { String pattern = "[\u4e00-\u9fa5]*"; if (str == null || str.isEmpty()) { return false; } return str.matches(pattern); }
标签:pattern ISE ati 正则 div match color @param 用例
原文地址:https://www.cnblogs.com/guanxinjing/p/13140111.html