Eclipse – How to Remove Blank Line

eclipse

How can I remove lines that only contain spaces when using Eclipse Find/Replace prompt. I checked the "Regular Expression" check box, and tried the following, neither of which worked.

^[:space:]*$

and

^\s*$

Best Answer

Find: ^\s*\n

Replace with: (empty)