Last active
October 17, 2016 08:02
-
-
Save r-winkler/48fe5f94f2d193c1ed4427af04bf2aea to your computer and use it in GitHub Desktop.
This file contains 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
# Anchors | |
^ Start of string | |
$ End of string | |
# Ranges | |
[A-Za-z] any letter | |
[0-9] any digit | |
[349] matches 3, 4 or 9 | |
[^5] any character except 5 (negation) | |
# Boundaries | |
\s whitespace | |
\S non-whitespace | |
\b word boundary | |
\B non-word boundary | |
# Quantifiers | |
* zero or more times | |
? zero or one time | |
+ one or more times | |
{n} exactly n times |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment