其他分享
首页 > 其他分享> > LintCode练习:2832 · 简单校验一下邮箱格式

LintCode练习:2832 · 简单校验一下邮箱格式

作者:互联网

他来了他来了,调了好几个Bug它终于通过了!

原题:

 

 参考代码:

1 public class Solution {
2     public static boolean isMatch(String s) {
3         String regex = "^([A-Za-z]|_)([.\\w-]+)@([.\\w-]+)(.com)(|(.[\\w]+))$";
4         return(s.matches(regex));
5     }
6 }

 

标签:regex,String,原题,LintCode,校验,2832,boolean,static,public
来源: https://www.cnblogs.com/mlblog27/p/15772079.html