Number wildcard search help

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
Domane57
Posts: 4
Joined: Wed Oct 05, 2022 10:54 pm

Number wildcard search help

Post by Domane57 »

Stuck on a noob search problem. Need to search for a 4 digit series of numbers as a wildcard for content search. For instance, I have Excel files with cells that have L1234 but wildcard:content:*1234 isn't working. How can I retrieve the files I'm looking for??? Thanks in advance.
Domane57
Posts: 4
Joined: Wed Oct 05, 2022 10:54 pm

Re: Number wildcard search help

Post by Domane57 »

For reference, I've seen this post, but I'm hitting my head on the wall:

viewtopic.php?t=8854
void
Developer
Posts: 16680
Joined: Fri Oct 16, 2009 11:31 pm

Re: Number wildcard search help

Post by void »

wildcard: only works in Everything 1.5 or later.

wildcard: will force Everything to match the whole filename or whole content.

Please try the following search:

wildcard:content:*?1234*

* = match any character any number of times.
? = match a single character.
You'll most likely want a * at the start and end of your search to find 1234 anywhere in the content.



To make wildcard: match anywhere in the content:
  • In Everything, from the Tools menu, click Options.
  • Click the Search tab on the left.
  • Uncheck Match whole filename when using wildcards.
  • Click OK.
    (and then search for: wildcard:content:?1234 )


For more control, please try regex:

regex:content:[a-z]1234
Post Reply