Remove empty lines in eclipse code editor by find/replace (Ctrl+F)

前端 未结 7 1075
轻奢々
轻奢々 2020-12-31 15:21

I want to remove all blank lines from my code by find/replace method in eclipse code editor.

I used regular expression \\n\\s*\\n to find all blank lin

相关标签:
7条回答
  • 2020-12-31 16:24

    This worked for me for years:

    Replace: [\t ]+$

    With blank

    0 讨论(0)
提交回复
热议问题