I use
System.Text.RegularExpressions.Regex("\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*")
to do RegularExpressions checking for valid email address.
How to add space (" ") and single quote ("'") to the string "(\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)" to validate as well?
Go to the complete details ...