I have a string named text which is the following:
'\x11@*\x00*\x00\x00\x00-\xa1\t\x00\xa3\x13\x00\x00\xff\x7f\x00\x00\x00\x00 \x00[logEvenTPlace:12] 3as\x
Because I had to decode it using:
(bytes.fromhex(text))
It has become an array b", which doesn't let me apply some basic regex rules.
I would like to convert, if its possible the value of my variable, literally without encoding or coding to a string type r".
Casting it as a string didnt work and if I do decode it crashes because some values are out of range.
Thanks.