Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
486 views
in Technique[技术] by (71.8m points)

notepad++ - How to delete nonconsecutive lines in text using RegEx?

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

^(.*)(
?
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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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:

^(.+)
?
(?=[sS]*?^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 ? . The look-ahead (?=...) checks if there is any text (with [sS]*?) 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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...