EN
Remove empty lines with regex in Notepad++
23 points
In this article we are going to look how to remove empty lines with Notepad++.
Presented below solution uses regex to do it (uses regular expressions).
Quick steps:
- open Notepad++,
- go to Replace window (in menu Search -> Replace... or press ctrl + H),
- in Search Mode group-box select Regular expression radio button,
-
enter below regex in Find what input:
xxxxxxxxxx
1^\R
-
enter below line in Replace with input:
xxxxxxxxxx
1>> Leave it EMPTY <<
-
click on Replace All button
-
Text before:
xxxxxxxxxx
1line 1
2
3
4line 2
5
6line 3
7line 4
-
Text after:
xxxxxxxxxx
1line 1
2line 2
3line 3
4line 4
Look at below screenshots:

