<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>