
|
Example Search Expression
|
Returns
|
|---|---|
|
foo and bar
|
Returns results where the blog entry contains both foo and bar, whether they are in the title or description of the blog entry or not.
|
|
foo OR bar
|
Returns results where the blog entries contains either of the words in either the title or description.
|
|
+foo
|
Returns results where the blog entry contains foo in either the title or in the description.
|
|
—foo
|
Returns results that do not contain the word foo.
|
|
NOT foo
|
Returns results that do not contain the word foo.
|
|
b?r
|
Returns results where the blog entry contains any three letter word starting with b and ending in r, such as bar.
|
|
f*
|
Returns a blog entry that begins with the letter f. For example, foo.
|
|
\+foo
|
Returns results that contain +foo in either the description or the title.
|