I am using
/^[a-zA-Z0-9\-_]+(\.[a-zA-Z0-9\-_]+)*@[a-z0-9]+(\-[a-z0-9]+)*(\.[a-z0-9]+(\-[a-z0-9]+)*)*\.[a-z]{2,4}$/
to validate my email IDs , but it has some issues like it is allowing below type mail ID which are invalid.
EX:
1. 1234@1234.com
2. 12deepak@abc.com
3. _deepak@abc.com
I have tried a lot by modifying the regular expression but not succeeded. Any one please suggest me a correct regular expression ?