I have a regex for my email:
const EMAIL = /^(([^<>()\[\].,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i;
I want to validate below email as true:
Fred\ [email protected] true
Joe.\\[email protected] true
""test\\blah""@example.com true
Below email as false: ""test\blah""@example.com
currently, I'm not able to do this validation please help