I have the below regex to match email address with atleast one @ and one .
[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+\.[a-zA-Z]{2,4}
Am wondering can it be simplified further to match email address with atleast one @ and one .?
I have the below regex to match email address with atleast one @ and one .
[-0-9a-zA-Z.+_]+@[-0-9a-zA-Z.+_]+\.[a-zA-Z]{2,4}
Am wondering can it be simplified further to match email address with atleast one @ and one .?
