Searching for something like this works:
\x49
But searching for something like this does not:
\xFF
It can find only bytes in range \x00 to \x7F
Seems something somewhere ought to be an unsigned variable instead of a signed one.
The characters that ‹\x80› through ‹\xFF› match depends on how your regex engine
interprets them, and which code page your subject text is encoded in. We recommend
that you not use ‹\x80› through ‹\xFF›. Instead, use the Unicode code point token
described in Recipe 2.7.
Nope, they are found when either of the 3 options (Text, Binary, Text and Binary) is set.admin wrote:Try Binary instead of Text and Binary. That should remove the XML files.
The bible talks about searching text, I search binary, so encoding should be totally irrelevant.Marco wrote:The Bible saysThe characters that ‹\x80› through ‹\xFF› match depends on how your regex engine
interprets them, and which code page your subject text is encoded in. We recommend
that you not use ‹\x80› through ‹\xFF›. Instead, use the Unicode code point token
described in Recipe 2.7.