Skip to content
Debugging Log
Search
K
Main Navigation
Home ✍️
Tokyo-Geek 🗼
Tokyo Hiker 🥾
Feeling lucky? 🎲
Appearance
Menu
Return to top
On this page
RegEx
Delete all blank lines
Find with RegEx:
To remove 2 consecutive empty lines ->
\n\n
To remove 3+ empty lines -->
\n+
To remove empty lines with whitespaces -->
\n+\s*\n
Replace With RegEx:
\n
Sources
Visual Studio Code - delete all blank lines - regex