Skip to content

Instantly share code, notes, and snippets.

@baslie
Last active April 25, 2016 09:52
Show Gist options
  • Save baslie/fa58acd5d87e6456652733b88b65f293 to your computer and use it in GitHub Desktop.
Save baslie/fa58acd5d87e6456652733b88b65f293 to your computer and use it in GitHub Desktop.
Sublime Text: Regular Expressions
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
FIND & REPLACE
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Example:
/*------------------------------------------
* Comment
*------------------------------------------*/
Regex:
(^[\s]*?\/\/.*)|(/\*[\s\S]+?\*/)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Example:
<!-- Comment -->
Regex:
(?s)<!--.*?-->
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Example:
"Empty line with spaces"
Regex:
^[\s]*?[\n\r]+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment