正则判断是否包含字母、数字、下划线、减号
/** * 字符串是否包含字母、数字、下划线、减号 * @author YOLANDA * @param str * @return */ public static boolean isValidString(String str) { boolean result = false; Pattern pt = Pattern.compile("^[0-9a-zA-Z_-]+$"); Matcher mt = pt.matcher(str); if (mt.matches()) { result = true; } return result; }原文链接:https://www.f2er.com/regex/360586.html