I have a regex for my email:
const EMAIL = /^(([^<>()\[\].,;:\s@\"]+(\.[^<>()\[\]\.,;:\s@\"]+)*)|(\".+\"))@(([^<>()[\]\.,;:\s@\"]+\.)+[^<>()[\]\.,;:\s@\"]{2,})$/i;
I want to validate below email as true:
Fred\ Bloggs@example.com true
Joe.\\Blow@example.com 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