本文共 419 字,大约阅读时间需要 1 分钟。
/**
2015年11月10日下午6:17:59
/public static boolean checkEmail(String email) { String check = "^\w+((-\w+)|(\.\w+))\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$";Pattern regex = Pattern.compile(check);Matcher matcher = regex.matcher(email);return matcher.matches();}public static void main(String[] args) {
测试通过,后缀加下划线是不允许的。
转载于:https://blog.51cto.com/13545923/2053330