I followed a blog post here to use a custom validator to validate a list of emails. However, the Regex expression in the article:
Regex emailRegEx = new Regex(@"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*",
RegexOptions.IgnoreCase);
allows this email address through:
"[email protected] [email protected]"
which is clearly invalid.
How can I change it to flag this as invalid?
Note: When you use the core RegEx Validator with the SAME regex expression it DOES catch that email, so perhaps it is a problem with the matching options?
Thanks