邮箱正则
Posted 陌上花开
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了邮箱正则相关的知识,希望对你有一定的参考价值。
String check = "^\\s*\\w+(?:\\.{0,1}[\\w-]+)*@[a-zA-Z0-9]+(?:[-.][a-zA-Z0-9]+)*\\.[a-zA-Z]+\\s*$";
Pattern regex = Pattern.compile(check);
Matcher matcher = regex.matcher(email);
boolean flag = matcher.matches();
if(!flag){
msg="您输入的邮箱格式不正确!";
return msg;
}
以上是关于邮箱正则的主要内容,如果未能解决你的问题,请参考以下文章