Boolean Search
+
stands for
AND:
indicates
that this
word
must
be present,
-
stands for
NOT:
indicates
that this
word must
not
be present,
OR:
the
word
is
optional,
The following examples demonstrate some search strings that use boolean operators:
-
apple bananathe result contains at least one of the two words.
-
+apple +juicethe result contains both words.
-
+apple macintoshthe result contains the word “apple”, but rank higher if it also contains “macintosh”.
-
+apple -macintoshthe result contains the word “apple” but not “macintosh”.
-
+apple ~macintoshthe result contains the word “apple”, but if it also contains the word “macintosh”, rate it lower than if it does not. This is “softer” than a search for
+apple -macintosh, for which the presence of “macintosh” causes the result not to be returned at all. -
+apple +(>turnover <strudel)the result contains the words “apple” and “turnover”, or “apple” and “strudel” (in any order), but rank “apple turnover” higher than “apple strudel”.
-
apple*the result contains words such as “apple”, “apples”, “applesauce”, or “applet”.