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

前端之家收集整理的这篇文章主要介绍了最新邮箱匹配正则(邮箱前缀可包含"_")前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/**
	 * 校验邮箱格式
	 *
	 * @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"));
	}



测试通过,后缀加下划线是不允许的。

原文链接:https://www.f2er.com/regex/359770.html

猜你在找的正则表达式相关文章