有效的邮箱地址

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

原文地址:https://www.cnblogs.com/BrokenIce/p/5518691.html