hi bakerman2,
Your solution working fine.
but may I know whats wrong in my pattern because it is currently used in other software and its working fine.
I want this pattern to be used so that my result and software result will be same.
software script is as below:
private bool isValidEmail(string emailId)
{
return Regex.IsMatch(emailId, "^(?(\")(\"[^\"]+?\"@)|(([0-9a-z]((\\.(?!\\.))|[-!#\\$%&'\\*\\+/=\\?\\^`\\{\\}\\|~\\w])*)(?<=[0-9a-z])@))(?(\\[)(\\[(\\d{1,3}\\.){3}\\d{1,3}\\])|(([0-9a-z][-\\w]*[0-9a-z]*\\.)+[a-z0-9]{2,24}))$", RegexOptions.IgnoreCase);
}
Bookmarks