zeenmakr wrote: ↑Tue Nov 26, 2019 6:21 am
Simple enough, Thanks
How about to return:
"foo bar.txt"
"foo_bar.doc"
"foo_bar.rft"
Using this
Code: Select all
everything.exe file:"foo bar" ext:doc;txt;rtf
Does that give you the correct results?
I would use one of the next queries for that:
Note that
Match whole filename when using wildcards has to be disabled for this to work.
That setting can be found under Menu:Tools > Options > Search.
You could use regular expressions too, if you are familiar with that:
Code: Select all
file: regex:"foo.bar" ext:doc;txt;rtf
Details can be found on the page I linked earlier.