Skip to content

Instantly share code, notes, and snippets.

@StudioLE
Last active December 23, 2016 10:38
Show Gist options
  • Save StudioLE/7201ce9c115771555ef0 to your computer and use it in GitHub Desktop.
Save StudioLE/7201ce9c115771555ef0 to your computer and use it in GitHub Desktop.
Useful Regex
// Condense triple line breaks
//
// Find
/\n\n\n+/
// Replace
\n\n
// Remove EOL whitespace
//
// Find
/[ \t]+\n/
// Replace
\n
// Remove EOL semicolons
//
// Find
/;\n/
// Replace
\n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment