html email regex

Solutions on MaxInterview for html email regex by the best coders in the world

showing results for - "html email regex"
Fabian
23 May 2017
1<input name="email" type="email" pattern="[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{1,63}$" class="form-control" placeholder="Email*" id="email" required="">
2
Eric
01 Jun 2017
1var email = /^[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,4}$/;
2