I have this regular expression for email validation:
/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/
But this is not working for emails like:
[email protected]
How do I change the above regular expression for this requirement?
I have this regular expression for email validation:
/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/
But this is not working for emails like:
[email protected]
How do I change the above regular expression for this requirement?