他来了他来了,调了好几个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 }
2023-10-17 08:06:16
他来了他来了,调了好几个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 }