I'm Following the below Example:
Email validation expression \w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* allows empty spaces
I'm using EMAIL_PATTERN:
 `/^(\w+([.]\w+)*@\w+([.]\w+)*\.\w+([.]\w+)*)$/`
with minor changes.
    It is allowing me to enter the email as i want but i dont want "_" at the
    starting of the email address. Example: _abc@gmail.com
    How to solve this?
    What regex google is using in gmail?
 
     
    