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
Re: Regex to search for only ascii
regex:[\x00-\x7f]
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: