Hello,
I want to remove all duplicate entries from a file including itself, so there are no lines left with that name.
Example:
Before.
After.
I tried the Sort function but it leaves one line with the same name.
How can I do that?
I want to remove all duplicate entries from a file including itself, so there are no lines left with that name.
Example:
Before.
Code: Select all
113F
26566Fzu
113F
523FD798
ADF465EW
113F
Code: Select all
26566Fzu
523FD798
ADF465EW
How can I do that?