Quote:
Originally Posted by KevinH
Is support of using \x{abcd} format in replacements desired or can people live with just \xab\xcd which should be supported now according to the ReplacementBuilder code.
|
it was my understanding that PCRE2 does not support the \xFF or \xFFFF syntax for unicode codepoints. Only \x{FF} or \x{FFFF}. For instance: I can't find á using \xe1 (or \x00e1). The braces must be used. Should we not be consistent with what search and replace supports?
Right now, replacing á with ā using codepoints would need to search for \x{e1}, but replace with \xe3 (
the code for ā is not 0101 in any listing I've found). That seems counterintuitive, no?
EDIT: my mistake. The code for ā is indeed 0101. My eyes and tiny screens resulted in the confusion of the tilde for the macron.