BrokenIce

  static public bool IsEmail(string email)
        {
            string pattern = @"^\w+([-+.]\w*)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$";
            return Regex.IsMatch(email, pattern);
        }

分类:

技术点:

相关文章:

  • 2021-12-05
  • 2021-08-04
  • 2021-04-01
  • 2022-01-02
  • 2021-11-08
  • 2021-12-28
  • 2021-12-03
  • 2021-10-27
猜你喜欢
  • 2021-09-01
  • 2021-11-25
  • 2021-10-19
  • 2021-11-07
  • 2021-09-30
  • 2021-10-19
  • 2021-11-06
相关资源
相似解决方案