Remove lines that is shorter than or equal 5 characters after the : using Notepad++

前端 未结 2 1613
滥情空心
滥情空心 2021-01-26 14:20

The question is like: Remove lines that is shorter than 5 characters before the @ using Notepad++

But it differs a bit...

I have like that:

abc

2条回答
  •  有刺的猬
    2021-01-26 14:54

    Open Notepad++ find and replace choose regex mode in the search and place ^((?!.+:\d{5,}).)*$ in search and keep replace with blank and press replaceAll

    ^((?!.+:\d{5,}).)*$

提交回复
热议问题