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.
Regex to search for only ascii
-
ovg
- Posts: 295
- Joined: Thu Oct 27, 2016 7:19 pm
Re: Regex to search for only ascii
regex:[\x00-\x7f]
-
void
- Developer
- Posts: 19904
- Joined: Fri Oct 16, 2009 11:31 pm
Re: Regex to search for only ascii
Only ASCII chars:
regex:^[\x00-\x7f]*$
A file containing a non-ASCII char:
regex:[^\x00-\x7f]
char-range:
regex:^[\x00-\x7f]*$
A file containing a non-ASCII char:
regex:[^\x00-\x7f]
char-range: