Created
October 27, 2014 16:05
-
-
Save arakno/0a10f67af7cf5dec3ce5 to your computer and use it in GitHub Desktop.
useful regex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var EmailRegex = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; | |
//simple email [a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])? | |
var FilenameRegex = /^[0-9a-zA-Z\^\&\'\£\@\;\{\}\[\]\,\”\`\’\$\=\!\-\#\(\)\.\%\+\~\_ ]+$/; | |
var URLRegex = /^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/; | |
var TelRegex = /^(?:(?:\(?(?:00|\+)([1-4]\d\d|[1-9]\d?)\)?)?[\-\.\ \\\/]?)?((?:\(?\d{1,}\)?[\-\.\ \\\/]?){0,})(?:[\-\.\ \\\/]?(?:#|ext\.?|extension|x)[\-\.\ \\\/]?(\d+))?$/i; | |
//simple Tel ^([0-9\(\)\/\+ \-]*)$ |
to include case insensitive and cater for ending with dot:
/^[a-z0-9!#$%&'+/=?^{|}~-]+(?:.[a-z0-9!#$%&'_+/=?^_
{|}~-]+)*@(?:a-z0-9?.)+(a-z0-9){1,63}?$/i
on HTML5:
[aA-zZ0-9!#$%&'+/=?^{|}~-]+(?:.[aA-zZ0-9!#$%&'_+/=?^_
{|}~-]+)*@(?:aA-zZ0-9?.)+(aA-zZ0-9){1,63}?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
var EmailRegex = /^[a-z0-9!#$%&'+/=?^
{|}~-]+(?:.[a-z0-9!#$%&'_+/=?^_
{|}~-]+)*@(?:a-z0-9?.)+(a-z0-9){1,63}?/;even simpler email: /^.+@.+..+$/