Hi I have created a schema and the following pattern to check for email id:
\w+([-+._]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*.
However it is not accepting email id's containing underscore like [email protected]
. Can you please modify this pattern so that it accepts _
too.
Thanks