标签:
static public bool IsEmail(string email) { string pattern = @"^\w+([-+.]\w*)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$"; return Regex.IsMatch(email, pattern); }
有效的邮箱地址
原文地址:http://www.cnblogs.com/BrokenIce/p/5518691.html