Issue
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*$
Solution
Find: ^\s*\n
Replace with: (empty)
Answered By - iamamac
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.