正则表达式验证Email地址

前端之家收集整理的这篇文章主要介绍了正则表达式验证Email地址前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

publicstaticvoidmain(String[]args){

//要验证的字符串

Stringstr="service@xsoftlab.net";

//邮箱验证规则

StringregEx="[a-zA-Z_]{1,}[0-9]{0,}@(([a-zA-z0-9]-*){1,}\.){1,3}[a-zA-z\-]{1,}";

//编译正则表达式

Patternpattern=Pattern.compile(regEx);

//忽略大小写的写法

//Patternpat=Pattern.compile(regEx,Pattern.CASE_INSENSITIVE);

Matchermatcher=pattern.matcher(str);

//字符串是否与正则表达式相匹配

booleanrs=matcher.matches();

System.out.println(rs);

}

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

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