Page 1 of 1

Delete blank rows

Posted: Fri Mar 26, 2010 7:24 pm
by gsolomon
How to delete blank rows? For example:

I am having a great day.

She sees the sun.


I want to change this to:

I am having a great day.
She sees the sun.

Posted: Fri Mar 26, 2010 7:36 pm
by ben_josephs
Find what: ^\n
Replace with: [nothing]

[X] Regular expression
or, if the blank lines might contain spaces,
Find what: ^ *\n [there's a space in front of the *]
Replace with: [nothing]

[X] Regular expression

Delete a blank row

Posted: Fri Mar 26, 2010 8:48 pm
by gsolomon
That worked perfectly. Thanks!