Removing empty lines in Notepad++

前端 未结 22 1816
时光取名叫无心
时光取名叫无心 2020-11-28 00:04

How can I replace empty lines in Notepad++? I tried a find and replace with the empty lines in the find, and nothing in the replace, but it did not work; it probably needs r

22条回答
  •  独厮守ぢ
    2020-11-28 00:47

    You need something like a regular expression.

    You have to be in Extended mode

    If you want all the lines to end up on a single line use \r\n. If you want to simply remove empty lines, use \n\r as @Link originally suggested.

    Replace either expression with nothing.

提交回复
热议问题