前端之家收集整理的这篇文章主要介绍了
正则验证邮箱格式是不是正确,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<span style="font-size:14px;">验证该邮箱格式是不是正确</span>
<span style="font-size:14px;">public class StringDemo1 {
public static void main(String[] args) {
/*
* 邮箱的正则表达式
*
* [a-zA-Z0-9_]+@[a-zA-Z0-9_]+(\.[a-zA-Z]+)+
*/
/*
* String类中提供了一个方法,可以用给定
* 的正则表达式来验证当前字符串的格式是否
* 满足要求
* boolean matches(String regex)
*/
String email
= "cwj@163.cn";
String regex
= "[a-zA-Z0-9_]+@[a-zA-Z0-9_]+(\\.[a-zA-Z]+)+";
boolean cwj1=email.matches(regex);
if (cwj1) {
System.out.println("是邮箱!");
}else {
System.out.println("不是邮箱!");
}
}
}</span>
原文链接:https://www.f2er.com/regex/360148.html