Getting EXACTLY matching hits?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
terrypin
Posts: 199
Joined: Mon Mar 18, 2013 2:41 pm

Getting EXACTLY matching hits?

Post by terrypin »

I'm looking for files named out.txt. Ideally I'd like nothing else. But I'll settle for all those starting with 'out.txt', like 'out.txt.lnk' etc, as I can then find my targets visually easily enough.

But what I'm getting are hundreds of results like this:
about.txt
BootEtc-ExtractFromInsideOut.txt
BoysNightOut.txt
Constant Out txt
etc


I'm using the recently installed Version 1.3.1.636b, with none of the defaults changed.

Any advice would be much appreciated please. I'm fairly sure this wan't happening in the previous version?

--
Terry, East Grinstead, UK
void
Developer
Posts: 15590
Joined: Fri Oct 16, 2009 11:31 pm

Re: Getting EXACTLY matching hits?

Post by void »

Please try whole file name matching:

Code: Select all

wfn:out.txt

Code: Select all

wholefilename:out.txt
You can also use whole word matching:

Code: Select all

ww:out.txt

Code: Select all

wholeword:out.txt
You can also toggle this from the search menu, by checking match whole word.
terrypin
Posts: 199
Joined: Mon Mar 18, 2013 2:41 pm

Re: Getting EXACTLY matching hits?

Post by terrypin »

Thanks, really appreciate that fast response.

wfn:out.txt works a treat.

If you'll excuse a follow-up; suppose I wanted all files starting with 'abc', not just exactly 'abc', I can do that with Regex using
^abc
But without Regex?

--
Terry, East Grinstead, UK
void
Developer
Posts: 15590
Joined: Fri Oct 16, 2009 11:31 pm

Re: Getting EXACTLY matching hits?

Post by void »

You can find files and folders that start with a term by using wildcards.

For example, to find files starting with abc:

Code: Select all

abc*
Using wildcards will always match the whole file name (or the whole full path and file name if match path is enabled).

Wildcard reference:
* = match zero or more characters.
? = match a single character.
*.* = *
*. = no extension.
terrypin
Posts: 199
Joined: Mon Mar 18, 2013 2:41 pm

Re: Getting EXACTLY matching hits?

Post by terrypin »

Thanks, I'll experiment with those to cement my learning. Despite having had this great tool installed for ages, haven't really used more than its bog standard features until now.

--
Terry, East Grinstead, UK
Post Reply