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