Suppose:
The lines in a file are:
0x0011D300
0x0013CE00
0x0015C900
0x0017C400
0x0017C400
0x0019BF00
0x001BBA00
0x001FB000
0x001FB000
0x0021AB00
0x0023A600
After running the macro the result should be: [only duplicates left]
0x0017C400
0x0017C400
0x001FB000
0x001FB000
Thanks. And It only has to check for duplicates, not triplicates.
As always post "fastest possible version" plz.
Could this be modified to something else to achieve the same result?
^(.*\r\n)\1+
The lines in a file are:
0x0011D300
0x0013CE00
0x0015C900
0x0017C400
0x0017C400
0x0019BF00
0x001BBA00
0x001FB000
0x001FB000
0x0021AB00
0x0023A600
After running the macro the result should be: [only duplicates left]
0x0017C400
0x0017C400
0x001FB000
0x001FB000
Thanks. And It only has to check for duplicates, not triplicates.
As always post "fastest possible version" plz.
Could this be modified to something else to achieve the same result?
^(.*\r\n)\1+