您的位置:首页 > 其它

最新邮箱匹配正则(邮箱前缀可包含"_")

2015-11-19 15:03 387 查看
/**
* 校验邮箱格式
*
* @param email
* @return
* @author shijing
* 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) {
System.out.println(checkEmail("855485_wq@qq.com"));
}


测试通过,后缀加下划线是不允许的。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: