Regex to search for only ascii

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
harryray2
Posts: 1053
Joined: Sat Oct 15, 2016 9:56 am

Regex to search for only ascii

Post by harryray2 »

I want to search only for ASCII characters..do I need a regex for this or is there already a setting in Everything?

If there isn't a setting, what would the regex be?

Thanks.
ovg
Posts: 294
Joined: Thu Oct 27, 2016 7:19 pm

Re: Regex to search for only ascii

Post by ovg »

regex:[\x00-\x7f]
void
Developer
Posts: 15480
Joined: Fri Oct 16, 2009 11:31 pm

Re: Regex to search for only ascii

Post by void »

Only ASCII chars:
regex:^[\x00-\x7f]*$

A file containing a non-ASCII char:
regex:[^\x00-\x7f]

char-range:
Post Reply