[Solved] Search all file extensions with caps

General discussion related to "Everything".
Post Reply
w64bit
Posts: 229
Joined: Wed Jan 09, 2013 9:06 am

[Solved] Search all file extensions with caps

Post by w64bit »

How can I search for all file extensions containing caps letters?
Last edited by w64bit on Fri Jan 21, 2022 3:35 pm, edited 1 time in total.
void
Developer
Posts: 15096
Joined: Fri Oct 16, 2009 11:31 pm

Re: Search all file extensions with caps

Post by void »

Please try searching for:
case:regex:\.[A-Z]*$

At least one capital letter:
case:regex:\.[^.]*[A-Z][^.]*$
w64bit
Posts: 229
Joined: Wed Jan 09, 2013 9:06 am

Re: Search all file extensions with caps

Post by w64bit »

Perfect.
Thank you
Post Reply