Skip to content

Instantly share code, notes, and snippets.

@rajatgoyal715
Last active February 18, 2019 03:40
Show Gist options
  • Save rajatgoyal715/92282f2f1bf3080d5fd97f3a087b8372 to your computer and use it in GitHub Desktop.
Save rajatgoyal715/92282f2f1bf3080d5fd97f3a087b8372 to your computer and use it in GitHub Desktop.
Some Regular Expressions

URL Regex

((?:ftp|https?):\/\/)?([a-z0-9_]+:[a-z0-9_]+@)?(([a-z0-9.-]+)\.(in|com|net|org|co\.in|co))(:[0-9]+)?(\/.*)?

Email Regex

/([A-Za-z0-9.+-_%/]+)@([A-Za-z0-9-.]+\.[A-Za-z]+)/g

Phone Regex

/(\(?[\d+]*\)?)?([- ]?)([\d -]{10,})/g

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment