possible to search for all files with icons in their names?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
dwilbank
Posts: 27
Joined: Sat Jun 28, 2014 2:37 pm

possible to search for all files with icons in their names?

Post by dwilbank »

like this unnecessary one right here...😎

do they all fall within a certain unicode range that I can search for? or is there a shortcut phrase I can use?
therube
Posts: 4713
Joined: Thu Sep 03, 2009 6:48 pm

Re: possible to search for all files with icons in their names?

Post by therube »

I don't know about "icons" per se™, but here is a "non-Ascii",
regex:[^\x{0000}-\x{007f}]
.
NotNull
Posts: 5354
Joined: Wed May 24, 2017 9:22 pm

Re: possible to search for all files with icons in their names?

Post by NotNull »

You can find files/folders containing emoticons in their names using this search query:

Code: Select all

regex:[\x{1F300}-\x{1F7FF}]
Last edited by void on Thu Apr 22, 2021 6:11 am, edited 1 time in total.
Reason: Replaced – with -
void
Developer
Posts: 15808
Joined: Fri Oct 16, 2009 11:31 pm

Re: possible to search for all files with icons in their names?

Post by void »

Please try NotNull's search:

Code: Select all

regex:[\x{1F300}-\x{1F7FF}]
I have replaced Replaced – (0x2013) with -
dwilbank
Posts: 27
Joined: Sat Jun 28, 2014 2:37 pm

Re: possible to search for all files with icons in their names?

Post by dwilbank »

Thanks all!
I'm finding everything I need now
(was not notified when the replies were posted)
Post Reply