afdbdseabc.doc cdseabc.xls ghdseabc.ppt
Exclude file extensions and search by the end letter of the file name abc
Exclude file extensions and search by the end letter of the file name
-
- Posts: 15
- Joined: Thu Sep 14, 2023 12:52 pm
Re: Exclude file extensions and search by the end letter of the file name
Everything 1.4:
Everything 1.5:
Code: Select all
regex:^.*abc\.[^.]*$
Everything 1.5:
Code: Select all
file: endwith:stem:abc
Re: Exclude file extensions and search by the end letter of the file name
Just to note some differences with, , will find:
abc.def@gmail.com
abc^123
where will not.
Is abc^123 an odd one?
(In my thinking, yes.)
Also to point out that suffix:stem:abc works, where stem:suffix:abc does not.
(I tried the latter before the former.)
suffix:stem:abc
abc.def@gmail.com
abc^123
where
endwith:stem:abc
Is abc^123 an odd one?
(In my thinking, yes.)
Also to point out that suffix:stem:abc works, where stem:suffix:abc does not.
(I tried the latter before the former.)
Re: Exclude file extensions and search by the end letter of the file name
suffix: looks at the end of each "word" in the filename, so suffix:abc will match "something 123abc else"
So abc^23 should also be matched.
suffix: is a search-modifier.
Typical Everything syntax is search-modifier:search-function:value
(where search-function:value could also be search-function:>value, etc.)
So abc^23 should also be matched.
stem: is a search-function
suffix: is a search-modifier.
Typical Everything syntax is search-modifier:search-function:value
(where search-function:value could also be search-function:>value, etc.)
-
- Posts: 15
- Joined: Thu Sep 14, 2023 12:52 pm