Search code examples
notepad++

How to keep only unique line in notepad++


i have this data

aaa
aaa
bbb
ddd
bbb
ccc

how to keep only unique lines as this result

ddd
ccc

Thanks much for any help


Solution

  • Try doing a find and replace all in regex mode with:

    ^(.*?\R)\1+

    and replace with nothing.

    Apologies, just observed this will not work is list is not sorted.