Created
March 26, 2016 11:25
-
-
Save YaronMiro/a08a712573f4d6231c48 to your computer and use it in GitHub Desktop.
Regular expressions
This file contains hidden or 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
# 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