Cullub
Cullub

Reputation: 3218

Removing ALL Duplicate Rows Notepad++

Is it possible to remove ALL duplicated rows in Notepad++, not leaving any occurrences of a duplicated line?

For example, I have a file:

jkekeuuuuuuuuuuuuuudlllemmmmmmmmeldjsllllllllllll.d,mmmm
lakjsd;lkuejjjjjjjjdmalejsssssssssssssssssssieeeeee
eyoiuddddddddkeousmsouyejjjjjjjjjjjjdnenooyyy
jkekeuuuuuuuuuuuuuudlllemmmmmmmmeldjsllllllllllll.d,mmmm
jkekeuuuuuuuuuuuuuudlllemmmmmmmmeldjsllllllllllll.d,mmmm

And I'd like to end up with:

lakjsd;lkuejjjjjjjjdmalejsssssssssssssssssssieeeeee
eyoiuddddddddkeousmsouyejjjjjjjjjjjjdnenooyyy

Upvotes: 1

Views: 787

Answers (1)

Prog1020
Prog1020

Reputation: 4781

It seems that Notepad++ cannot do it. Only can leave original lines.
In SynWrite editor you can write in Console panel some Python script to do it. Maybe even in Notepad++ you can use "Python Script" plugin.

Upvotes: 1

Related Questions