Need help searching
-
Roonsworld
- Posts: 8
- Joined: Wed Dec 11, 2024 5:15 am
Need help searching
How do I search only the files which have a specific word in between somewhere in the file name but not starting or ending with?
Re: Need help searching
blue !regex:^blue !regex:blue$Search for blue
but do not find filenames that start with blue (^blue)
nor filenames that end with blue (blue$)
Finds, "libbluescreen_plugin.dll" & "Carefirst Blue Cross Blue Shield.pdf"
Not, "bluetooth-symbolic.svg" nor "red-blue"
You could use prefix: & suffix:, BUT, they look to work on "words" in a file name
rather then on the start & end of filenames.
(Is that correct, or is that only happening in 1.5a ?)
blue !prefix:blue !suffix:blueFinds, "libbluescreen_plugin.dll" & "CoppinSpecBluestone.pdf"
Not, "167548_source two blue cups.txt", nor "Sky Blue.skin"
(Is that correct, or is that only happening in 1.5a ?)
Seemingly because prefix: suffix: are dealing with "word-parts" of the file name, & not the filename itself.
(Is that correct, or is that only happening in 1.5a ?)
Match the start of words. So yes it is correct.(Is that correct, or is that only happening in 1.5a ?)
(I didn't realize.)
(And prefix: suffix: is 1.5a only.)
!\blueRe: Need help searching
Will depend on what you consider a word ...
One of these might already do it:
The first one will find swordfish.txt, the second one "what's a word worth.doc"
One of these might already do it:
Code: Select all
*?word?*
" word "