Skip to content

Instantly share code, notes, and snippets.

@raviwu
Created February 14, 2017 07:33
Show Gist options
  • Save raviwu/d304bfa6e2167376802ec3488c290c51 to your computer and use it in GitHub Desktop.
Save raviwu/d304bfa6e2167376802ec3488c290c51 to your computer and use it in GitHub Desktop.
Common Regex
# URL with http:// or https://
%r{\A(http|https):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(([0-9]{1,5})?\/.*)?\z}ix
# email
/\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment