I want to create a regular expression for a RegularExpressionValidator in Asp.net…
I want to create the following expression
(emailaddress ([,][SPACE]* emailaddress)* )?
emailaddress = \w+([-+.’]\w+)@\w+([-.]\w+).\w+([-.]\w+)*
please check if emailaddress is correct, and how can I create the syntax for the above expression
thank you
Building on Using a regular expression to validate an email address,