使用正则表达式判断邮箱格式是否正确

public class RegexDemo {
public static void main(String[] args) {

// 定义一个邮箱
String a = "1563435@qq.com";

// 使用正则表达式判断
boolean matches = a.matches("[A-Za-z\\d]+([-_.][A-Za-z\\d]+)*@([A-Za-z\\d]+[-.])+[A-Za-z\\d]{2,4}");

// 输出判断结果正确为true 错误为false
System.out.println(matches);

}

}

posted @ 2019-03-20 08:28  若久  阅读(5757)  评论(0)    收藏  举报