I have a text/csv file that looks like this:
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.
I have a text/csv file that looks like this:
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.
Press
ctrl + shift + f
and Replace "\n\n" to "\n"