Skip to content

Instantly share code, notes, and snippets.

@YaronMiro
Created March 26, 2016 11:25
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 YaronMiro/a08a712573f4d6231c48 to your computer and use it in GitHub Desktop.
Save YaronMiro/a08a712573f4d6231c48 to your computer and use it in GitHub Desktop.
Regular expressions
# Represent any number
\d
# Anything but a number
\D
# Represent any space
\s
# Anything but a space
\S
# Represent any character
\w
# Anything but a character
\W
# Anything but a new line brea
.
# any space that procced or followed by a whole word (My Dog)
\b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment