I'm a novice with Everything. Can someone direct me to instructions for performing a simple content search (filenames impertinent) for the appearance of ONE specific word? I ALSO need the same search or an add'l one, modified to find TWO specific words appearing within the same document, regardless of whether they appear together or not. The ideal search/s will be performed across all volumes of my index?
I know one parameter/filter will be 'search documents only.'
I've found exceptional explanations within this forum so far and only used it a few times. I would appreciate whatever direction you can provide. This is my first forum request for help. I usually go straight to a software user manual and figure it out, but it occurs to me that would likely be recreating the wheel for this case.
Many thanks!!
sjm
Request for assistance to perform content search across all volumes
Re: Request for assistance to perform content search across all volumes
To search file contents for one word, please try searching for:
content:abc
To find multiple words, please try searching for:
content:abc content:123
To find a exact phrase:
content:"abc 123"
Note: content is not indexed by Everything, please combine with other searches for the best performance, for example:
d:\downloads\ content:abc content:123
content:abc
To find multiple words, please try searching for:
content:abc content:123
To find a exact phrase:
content:"abc 123"
Note: content is not indexed by Everything, please combine with other searches for the best performance, for example:
d:\downloads\ content:abc content:123
Re: Request for assistance to perform content search across all volumes
Thank you very much. I'll give this a shot. I don't know why I was under the impression that content was not included in the index, but I'm sure your suggestion will be right on target.
Sjm
Sjm
Re: Request for assistance to perform content search across all volumes
This search <AND>To find multiple words, please try searching for: content:abc content:123 wrote:To find multiple words, please try searching for:
content:abc content:123
But how to find <OR>?
Re: Request for assistance to perform content search across all volumes
Code: Select all
content:abc | content:123
Re: Request for assistance to perform content search across all volumes
Why this does not work, grouping?
to find 456 AND (abc OR 123)
Why do I need to do 100500 content : content : content : content ?
to find 456 AND (abc OR 123)
Code: Select all
content:<abc | 123> 456
Re: Request for assistance to perform content search across all volumes
Everything 1.4 doesn't allow nested searches.
However, you could combine the content: function with the regex: modifier. That changes the behaviour of the content: function to allow the use of regular expressions when searching for content. Simple example:
Code: Select all
regex:content:"abc|123" content:456
I assume you are a bit dramatic here, but if not: you will run into limitations of Everything and you should look at specialized programs like dnGrep, Astrogrep, GrepWin, etc.