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!
How to query for files starting with specific letter
-
- Posts: 18
- Joined: Thu Mar 24, 2016 9:53 am
Re: How to query for files starting with specific letter
Please try:
"2a - *"
The * enables wildcard searching. Wildcards searches must match the entire filename.
The following searches will also work:
startwith:"2a - "
regex:"^2a - "
"2a - *"
The * enables wildcard searching. Wildcards searches must match the entire filename.
The following searches will also work:
startwith:"2a - "
regex:"^2a - "
-
- Posts: 18
- Joined: Thu Mar 24, 2016 9:53 am
Re: How to query for files starting with specific letter
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.
"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.
Re: How to query for files starting with specific letter
Check if Match whole filename when using wildcards is enabled from Tools -> Options -> Search.
Please try searching for:
"2A - *.wav"
Please try searching for:
"2A - *.wav"
-
- Posts: 18
- Joined: Thu Mar 24, 2016 9:53 am
Re: How to query for files starting with specific letter
It worked, thanks mate!void wrote:Check if Match whole filename when using wildcards is enabled from Tools -> Options -> Search.
Please try searching for:
"2A - *.wav"