leveetated
Programmer
Hello regex experts,
I have text files in which I am conducting a regex search. I want to find all instances of two consecutive strings that end in the number 1, *except* for those that are duplicates.
Each string is a 13 character alphanumeric string followed by a DOS line break. It doesn't matter what the first 12 chars are, as long as the last character is a 1.
For example, I want to find this:
3FEC9AAE0A1D1
FBF9A13681971
But NOT this:
FBF9A13681971
FBF9A13681971
And NOT this:
CB9121B9E03F0
6750583E86A11
Any suggestions much appreciated. With thanks,
Lee.
I have text files in which I am conducting a regex search. I want to find all instances of two consecutive strings that end in the number 1, *except* for those that are duplicates.
Each string is a 13 character alphanumeric string followed by a DOS line break. It doesn't matter what the first 12 chars are, as long as the last character is a 1.
For example, I want to find this:
3FEC9AAE0A1D1
FBF9A13681971
But NOT this:
FBF9A13681971
FBF9A13681971
And NOT this:
CB9121B9E03F0
6750583E86A11
Any suggestions much appreciated. With thanks,
Lee.