Skip to content

Instantly share code, notes, and snippets.

@Origame
Created March 18, 2016 09:43
Show Gist options
  • Save Origame/eca5a06c6224e77926cd to your computer and use it in GitHub Desktop.
Save Origame/eca5a06c6224e77926cd to your computer and use it in GitHub Desktop.
Search regex for Sublime Text
//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