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
> Regular Expressions Cheat Sheet | |
> A regular expression specifies a set of strings that matches it. This cheat sheet is based off Python 3's Regular Expressions (http://docs.python.org/3/library/re.html) but is designed for searches within Sublime Text. | |
> Special Characters | |
\ Escapes special characters or signals a special sequence. | |
. Matches any single character except a newline. | |
^ Matches the start of the string. | |
$ Matches the end of the string. | |
* Greedily matches 0 or more repetitions of the preceding RE. | |
*? Matches 0 or more repetitions of the preceding RE. |