I've got the following line of UTF8 text (Not sure if this will translate properly but it's UTF-8 string with, basically, extended ASCII)
const std::string notAValidUTF8String("뼇-Â¹ÃÆ’με");
Using brief keymode with the command-line search/replace
I did - F6 (search)
\xB9
Replacement
\\xB9
What happens is SE finds the hex byte (good) but tries to replace it with "xB9" (ignoring the slash altogether)
I've seen this on 18.0.1.2 and 19 Beta 1.
Is it possible my regex for the command-line is setup differently than the one in the dialog box? (I thought they were the same)