Hi,
I have on my left addresses that consist of 8 hexadecimal digits. On the right, addresses that have '0x' followed by 8 hexadecimal digits (usually different from those in the left.
I want these blocks of addresses to be considered unimportant changes.
I tried the replacement:
Left: [0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]
Right: 0x[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]
However, this didn't work. What's the way to do this?
Cheers,
PM
I have on my left addresses that consist of 8 hexadecimal digits. On the right, addresses that have '0x' followed by 8 hexadecimal digits (usually different from those in the left.
I want these blocks of addresses to be considered unimportant changes.
I tried the replacement:
Left: [0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F][0-9A-F]
Right: 0x[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]
However, this didn't work. What's the way to do this?
Cheers,
PM
Comment