Notepad++ Regular expression find and delete a line

后端 未结 5 1485
梦如初夏
梦如初夏 2021-01-30 10:21

I am trying to find and delete a line using Notepad++

I need to find lines in this file (UNIX Format) that match the string \'#RedirectMatch Permanent

5条回答
  •  太阳男子
    2021-01-30 11:03

    Provide the following in the search dialog:

    Find What: ^$\r\n
    Replace With: (Leave it empty)

    Click Replace All

提交回复
热议问题