How to delete nonconsecutive lines in text using RegEx?

后端 未结 1 1724
借酒劲吻你
借酒劲吻你 2020-12-20 08:04

I use the following expression in Notepad++ to delete duplicate lines:

^(.*)(\\r?\\n\\1)+$ 

The problems are:

  1. It is only for
相关标签:
1条回答
  • 2020-12-20 08:57

    Since no one is interested, I will post what I think you need.

    delete duplicate lines in a text that contains space, and that are nonconsecutive

    I assume you have text having, say duplicate lines My Line One and some text and My Line Two and more text:

    My Line One and some text
    My Line One and some text
    My Line Two and more text
    My Line One and some text
    My Line Two and more text
    

    These duplicate lines are not all consecutive (only the first two).

    So, you can remove duplicate lines by running this search and replace:

    ^(.+)\r?\n(?=[\s\S]*?^\1$)
    

    Replace with empty string.

    Regex note: ^ and $ are treated as line start/end anchors by default, so we only match one line and capture it with ^(.+)$. Then we match the newline symbol (any OS style) with \r?\n. The look-ahead (?=...) checks if there is any text (with [\s\S]*?) after our line under inspection with the same contents (with the ^\1$ where \1 is a backreference to the line text captured).

    enter image description here

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