how to remove new lines in sublime text using regex

21.2k Views Asked by At

I have a text/csv file that looks like this:

enter image description here

I wanted to remove all the blank new lines. How can I do so? I tried using regex with matching \n, but then this would merge all the lines into one line.

3

There are 3 best solutions below

1
On BEST ANSWER

Press ctrl + shift + f

enter image description here

and Replace "\n\n" to "\n" enter image description here

0
On
^[\s]*\n

you can use that, if you elaborate a bit more I could help you to find a more accurate regular expression with this you should get any line with blank characters,

cheers

0
On

For sublime replace[ctrl+alt+f]
use regex \n
replace with <nothing>