Problematic characters in RegEx

Found a bug in "Everything"? report it here
Post Reply
SafetyCar
Posts: 22
Joined: Fri Jul 24, 2009 9:39 pm

Problematic characters in RegEx

Post by SafetyCar »

I was trying to get files with characters out of the range from "!"(close-exclamation) to "¡"(open-exclamation) with [!-¡] but i have some problems.

Testing with RegEx enabled:
¡ - Gets good results...

But with this (that should be exactly the same)...
[¡] - It shows very estrange things (files without "¡" but with º,ª,á,é,¿,©...)


Other thing, I found is that it doesn’t understand no hexadecimal characters for example \x41 (A)

Thanks a lot for the efforts in this software. ;) :)
Last edited by SafetyCar on Fri Jan 08, 2010 9:47 am, edited 1 time in total.
void
Developer
Posts: 15675
Joined: Fri Oct 16, 2009 11:31 pm

Re: Problematic characters in RegEx

Post by void »

Only ASCII characters are supported when regex is enabled.

Unicode regex support is on my "Things to do" list.
Post Reply