Hello @smth76 and All,
Yeah, in an ANSI encoded file, any character, with Unicode value, between \x80 to \xBF, is NOT taken in account :-(( It’s a very old bug. In an encoded ANSI file, you can search these characters with the regex [\x80-\xbF]
On my laptop, as I’m French, the NON Unicode encoding used, in ANSI, is the Windows-1252 encoding
Luckily, nowadays, it’s better to use any Unicode encoding, that is to say, any other encoding but ANSI ;-)) In that case, the selection of all these characters do give the expected result : 64 characters selected
In an Unicode encoded file, these characters may be found with, either, the regexes :
[\x80-\xbF]
[\x{80}-\x{bF}]
[\x{0080}-\x{00bF}]
Best Regards,
guy038