For the life of me, I can't get this to work:
I' trying to match a hex sequence like this (or any of those starting with a \x and ending in two numbers) "\xed\xa0\xbd\xed\xb8\x89"
with the this regex "^\\s\\x[0-9]{2}$"
but it won't work.
I'm thinking I have to start with a whitespace followed by \
and an x
and then have the number range 0-9 repeated twice, or no?
Any help would be welcome!!