1 2 3 4
private bool IsEmail(string text) { return System.Text.RegularExpressions.Regex.IsMatch(text,@"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"); }