Let\'s say I had a text file with the following nine lines:
foo bar baz qux quux
How can I use Sublime Text 2 to remove all four of the
The regexp in Hugo's answer is correct when there is no spaces in the line. In case if there are space regexp can be ^\s+$
^\s+$