how can I filter files with Chinese character

General discussion related to "Everything".
Post Reply
beyondzhu
Posts: 16
Joined: Thu Sep 18, 2014 6:22 am

how can I filter files with Chinese character

Post by beyondzhu »

hi David:

I am Chinese guy. I want to filter files that only have Chinese character.
so,how can I filter files with only Chinese character

and more:
how can I filter files with only English character?

for other foreigners:
how can he filter files with only Russian or French (etc) character?
void
Developer
Posts: 16754
Joined: Fri Oct 16, 2009 11:31 pm

Re: how can I filter files with Chinese character

Post by void »

To search Chinese only script, search for:
regex:\p{Han}

To search for non-ASCII characters, search for:
regex:[^\x00-\x7f]

To search for ASCII characters only, search for:
!regex:[^\x00-\x7f]
Post Reply