How to query for files starting with specific letter

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
filipeteles
Posts: 18
Joined: Thu Mar 24, 2016 9:53 am

How to query for files starting with specific letter

Post by filipeteles »

I'm running the following query: "2a - "

But I'm getting results like "12a - "

How do I query for a specific letter or word, for instance, 2 has to be the first character in the file name?

Thanks!
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: How to query for files starting with specific letter

Post by void »

Please try:
"2a - *"

The * enables wildcard searching. Wildcards searches must match the entire filename.

The following searches will also work:
startwith:"2a - "
regex:"^2a - "
filipeteles
Posts: 18
Joined: Thu Mar 24, 2016 9:53 am

Re: How to query for files starting with specific letter

Post by filipeteles »

My full query is:

"2A - " *.wav

I tried

startwith:"2A - " *.wav

and

"^2A - " *.wav

and

"2A - *" .wav (still getting results that finish with .wav.asd not just .wav)


It doesn't like it either.
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: How to query for files starting with specific letter

Post by void »

Check if Match whole filename when using wildcards is enabled from Tools -> Options -> Search.

Please try searching for:
"2A - *.wav"
filipeteles
Posts: 18
Joined: Thu Mar 24, 2016 9:53 am

Re: How to query for files starting with specific letter

Post by filipeteles »

void wrote:Check if Match whole filename when using wildcards is enabled from Tools -> Options -> Search.

Please try searching for:
"2A - *.wav"
It worked, thanks mate!
Post Reply