Skip to content

Instantly share code, notes, and snippets.

@warrenlalata
Last active February 17, 2021 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warrenlalata/c0092e85a78611f57460c611be081654 to your computer and use it in GitHub Desktop.
Save warrenlalata/c0092e85a78611f57460c611be081654 to your computer and use it in GitHub Desktop.
RegEx cheatsheet
numeric only
/^\d+$/
alphanumeric, dash and underscore with space
/^[a-z\d\-_\s]+$/i
detect non alphanumeric chars
/[^a-zA-Z\d]/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment