do they all fall within a certain unicode range that I can search for? or is there a shortcut phrase I can use?
possible to search for all files with icons in their names?
-
dwilbank
- Posts: 29
- Joined: Sat Jun 28, 2014 2:37 pm
possible to search for all files with icons in their names?
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?
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: 5727
- Joined: Thu Sep 03, 2009 6:48 pm
Re: possible to search for all files with icons in their names?
I don't know about "icons" per se™, but here is a "non-Ascii", .
regex:[^\x{0000}-\x{007f}]-
NotNull
- Posts: 5961
- Joined: Wed May 24, 2017 9:22 pm
Re: possible to search for all files with icons in their names?
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 -
Reason: Replaced – with -
-
void
- Developer
- Posts: 19904
- Joined: Fri Oct 16, 2009 11:31 pm
Re: possible to search for all files with icons in their names?
Please try NotNull's search:
I have replaced Replaced – (0x2013) with -
Code: Select all
regex:[\x{1F300}-\x{1F7FF}]
-
dwilbank
- Posts: 29
- Joined: Sat Jun 28, 2014 2:37 pm
Re: possible to search for all files with icons in their names?
Thanks all!
I'm finding everything I need now
(was not notified when the replies were posted)
I'm finding everything I need now
(was not notified when the replies were posted)