How to delete nonconsecutive lines in text using RegEx?

廉价感情. 提交于 2019-12-20 05:18:14

问题


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

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

The problems are:

  1. It is only for single word lines, if there is space in a line it won't work.
  2. It is only for consecutive duplicate lines.

Is there a solution (preferably regular expression or macro) to delete duplicate lines in a text that contains space, and that are nonconsecutive?


回答1:


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).



来源:https://stackoverflow.com/questions/31023479/how-to-delete-nonconsecutive-lines-in-text-using-regex

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!