ls00

public void main(){
        String emailRegEx = "^[a-zA-Z0-9_\\.-]+@([a-zA-Z0-9-]+\\.)+[a-zA-Z0-9]{2,4}$";
        String email = "bieg@qef.com";
        System.out.println(email.matches(emailRegEx));
        
    }

分类:

技术点:

相关文章:

  • 2021-11-23
  • 2022-12-23
  • 2021-12-15
  • 2021-11-25
猜你喜欢
  • 2022-12-23
  • 2022-02-24
  • 2021-12-03
  • 2021-10-03
  • 2022-12-23
  • 2022-01-01
  • 2021-11-07
相关资源
相似解决方案