|
OPERATOR
|
USE TO . . .
|
EXAMPLE
|
RESULTS
|
|
Boolean
|
AND
|
require that both terms are present somewhere in the document
|
zen AND motorcycles
|
will find all documents containing the words "zen" and "motorcycles"
|
|
AND NOT
|
exclude the term from the query
|
zen AND NOT internet
|
returns all documents with the word "zen" excluding those with the word "internet"
|
|
OR
|
require that at least one term is present
|
turtle OR tortoise
|
returns all documents with either "turtle" or "tortoise"
|
|
NEAR
|
require that one term is found within a certain proximity of the other
|
ethics NEAR responsibility
|
returns all documents with "ethics" in close proximity to "responsibility"
|
|
Composite boolean
|
boolean operators and ( )
|
broaden or narrow keyword search
|
(zen AND motorcycles) AND NOT internet
|
returns documents containing "zen" and "motorcycles" but not "internet"
|
|
Truncation
|
*
|
finds words beginning with the given stem
|
star*
|
returns documents with starts, stardom, starvation, startle, etc.
|
|
+REQUIRE
|
+
|
similar to boolean AND, requires the term
|
+zen +motorcycles
|
returns documents containing the words "zen" and motorcycles" somewhere in the text
|
|
-EXCLUDE
|
-
|
similar to boolean NOT, excludes the term
|
+zen -internet
|
returns documents not containing this term
|
|
Phrase
|
" "
|
marks a phrase
|
"cat in the hat"
|
returns documents containing this phrase
|
|
Case Sensitivity
|
upper and lower case letters
|
Adjacent capitalized words are treated as a single proper name
|
Blade Runner
|
returns documents containing info on the movie rather than on the separate words "Blade" and "Runner"
|
|
Example
|
option next to an example
|
narrow a search to one like the example
|
|
|