Created
March 18, 2016 09:43
-
-
Save Origame/eca5a06c6224e77926cd to your computer and use it in GitHub Desktop.
Search regex for Sublime Text
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
//SEARCH REGEX for sublime Text | |
//Begins with AA and ends with BB: | |
(?=AA)(.*)(?<=BB) | |
//After AA and before BB: | |
(?<=AA)(.*)(?=BB) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment