Hello,
I'm not sure the function of "-" symbol.
for example, when I type "doc:everything" to search in my computer, there are 8 results,
but just add a minus symbol in the command and use "doc:everything -" command search again, there are just 6 results left.
And there are some command I use to experiment,
"d: datemodified:today" "d: datemodified:today -"
"parent:d: childcount:<100" "parent:d: childcount:<100 -"
the version include "-" is always less result than it versus, and the order is doesn't matter.
PS:
1:I'm a noob in forum and don't know how to insert local pictures in the article, click the image icon,there are "",what content should write in the middle of label?
2:And I tried to use attachments add files, it seemed fail too.
what does "-" mean in everything command
Re: what does "-" mean in everything command
- is not an Everything operator.
- will match a literal - in the filename.
Everything operators:
space = AND
| = OR
! = NOT
< > = Grouping
" " = escape operators.
To upload an image:
Click the Attachments tab.
Click Add files.
Select your image file and click Open.
Leave the file comment empty.
Click the place inline button.
It will paste the following text in your post:
This text will be replaced with your image when submitted.
- will match a literal - in the filename.
Everything operators:
space = AND
| = OR
! = NOT
< > = Grouping
" " = escape operators.
To upload an image:
Click the Attachments tab.
Click Add files.
Select your image file and click Open.
Leave the file comment empty.
Click the place inline button.
It will paste the following text in your post:
Code: Select all
[attachment=0]my-image.png[/attachment]
Re: what does "-" mean in everything command
Since minus symbol is not a valid operator, why add "-" in the end of search command will derease results? That's just a demostration of the wired output. In fact any comand i have tired in everything have the same bahavior.void wrote: ↑Mon Aug 26, 2024 3:21 am - is not an Everything operator.
- will match a literal - in the filename.
Everything operators:
space = AND
| = OR
! = NOT
< > = Grouping
" " = escape operators.
To upload an image:
Click the Attachments tab.
Click Add files.
Select your image file and click Open.
Leave the file comment empty.
Click the place inline button.
It will paste the following text in your post:This text will be replaced with your image when submitted.Code: Select all
my-image.png
And really thank you teach me upload images,help a lot ^_^
Re: what does "-" mean in everything command
void wrote: ↑Mon Aug 26, 2024 3:21 am - is not an Everything operator.
- will match a literal - in the filename.
Everything operators:
space = AND
| = OR
! = NOT
< > = Grouping
" " = escape operators.
To upload an image:
Click the Attachments tab.
Click Add files.
Select your image file and click Open.
Leave the file comment empty.
Click the place inline button.
It will paste the following text in your post:This text will be replaced with your image when submitted.Code: Select all
my-image.png
Oh,I see!
Thank you!
And ignore the previous reply. Sorry
Re: what does "-" mean in everything command
why add "-" in the end of search command will decrease results?
Find files that were modified today AND are on d: drive."d: datemodified:today"
Find files that were modified today AND are on d: drive AND contain the string '-'."d: datemodified:today" "d: datemodified:today -"
So if you have a files named,
"updated-today.txt" & "updated today.txt"
the first search would give 2 results
the second search would only give 1 result (as "updated today.txt" does not contain a '-').
Re: what does "-" mean in everything command
Thank you.therube wrote: ↑Wed Aug 28, 2024 4:57 pmwhy add "-" in the end of search command will decrease results?Find files that were modified today AND are on d: drive."d: datemodified:today"Find files that were modified today AND are on d: drive AND contain the string '-'."d: datemodified:today" "d: datemodified:today -"
So if you have a files named,
"updated-today.txt" & "updated today.txt"
the first search would give 2 results
the second search would only give 1 result (as "updated today.txt" does not contain a '-').
I understand