Search Syntax Box Examples.

Have a suggestion for "Everything"? Please post it here.
ShadowTiger
Posts: 3
Joined: Wed Dec 03, 2025 7:57 pm

Search Syntax Box Examples.

Post by ShadowTiger »

In the Help > Search Syntax Help box, where it shows all of the possible syntaxes, there is something critical that is missing that would be insanely helpful to teach people how to use them.

That something is simply an example of how it would effectively be used. It can even be used categorically so there's only one example at the top of every category, and they can plug the relevant search term or filter in as needed.

So it would go from:

Code: Select all

Wildcard matching:
	*	Matches zero or more characters (except \).
	**	Matches zero or more characters.
	?	Matches one character (except \).
	The whole filename is matched when using a wildcard.
to:

Code: Select all

Wildcard matching:
Example:  Eagle[b]*[/b].jpg
	*	Matches zero or more characters (except \).
	**	Matches zero or more characters.
	?	Matches one character (except \).
	The whole filename is matched when using a wildcard.
A file path example would be amazing as well, for anyone looking to search in a specific folder.
Last edited by void on Wed Dec 03, 2025 11:27 pm, edited 1 time in total.
Reason: fixed formatting
void
Developer
Posts: 19901
Joined: Fri Oct 16, 2009 11:31 pm

Re: Search Syntax Box Examples.

Post by void »

I have updated the search syntax with a wildcard example here:

Search Syntax

This help will be merged into the main support pages and Everything -> Search Syntax.

Thank you for the suggestion.
froggie
Posts: 320
Joined: Wed Jun 12, 2013 10:43 pm

Re: Search Syntax Box Examples.

Post by froggie »

stem:*bar
match files and folders ending with foo. (ignoring extension)
ending with bar, no?
void
Developer
Posts: 19901
Joined: Fri Oct 16, 2009 11:31 pm

Re: Search Syntax Box Examples.

Post by void »

Yes, sorry.

stem:*bar
match files and folders ending with bar. (ignoring extension)