1

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
Cullub
  • 2,901
  • 3
  • 30
  • 47
  • possible duplicate of [Removing duplicate rows in Notepad++](http://stackoverflow.com/questions/3958350/removing-duplicate-rows-in-notepad) – P0W Sep 23 '14 at 11:56
  • 2
    @P0W No, that question asks `how to remove all but one` duplicate; mine is `how to remove all`. – Cullub Sep 23 '14 at 11:58

1 Answers1

1

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.

borisbn
  • 4,988
  • 25
  • 42
Prog1020
  • 4,530
  • 8
  • 31
  • 65