I am using RegularExpressionValidator to validate multiple email addresses seprated by a comma ","
My below expression works fine for this requirment:
"((\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*)*([,])*)*"
Requirment is this expression should be able to handle space after comma in email addresses.
For example my current expression work file for email1@domain.com,email2@domain.com but what it do not do is email1@domain.com, email2@domain.com
I understand there can be many solutions but in my snario best is to enhance this expression.
Please guide me