Submit a ticket My Tickets
Welcome
Login

Search Syntax

"and" or "+"

Performs a boolean AND search, i.e. will find results with any of the different words in

  1. cat and mouse
  2. cat + mouse

( )

Used to signify precedence

  1. cat or mouse and brown
  2. (cat or mouse) and brown
  3. cat or (mouse and brown)

Note that unlike mathematics - the operator which takes precedence is the OR operator as opposed to the AND operator.

Therefore, example one and two are interpreted the same, and will find either cats or mice but they must be brown

If this wasn't your intention then you can change the precedence by putting brackets round the words you would like to take precedence. E.g. the third example will find cats of any colour and it will also find mice but only if they are brown.

*

Performs a wildcard search - can only be used at the end of words

cat*

will match e.g. "cat" , "cats", "category", etc.

Note that this is done automatically so unnecessary to append. If you don't want automatic wildcarding then use quote marks for a literal search.

-

Performs a boolan NOT search, i.e. will exclude results when used in conjunction with other words - although see notes

  1. cat -mouse

Note that even though a space signifies an OR search (see below), if you put a dash before a word then we change the preceding space (i.e. an OR) to an AND/+ as this is almost always what you would want -i.e. give me results with "cat" AND not mouse.

Quote marks

Performs a literal search

"cat and mouse"

Only entries with exactly the phrase "cat and mouse" in it will be returned
Note that you can’t combine literal and non-literal searches in the same search phrase.

Space or "or" or "|"

Performs a boolean OR search, i.e. will find results with any of the different words in

  1. cat mouse
  2. cat or mouse
  3. cat | mouse

Even though entries with either "cat" or "mouse" will be returned, entries with both "cat" and "mouse" will be returned with a higher ranking, and entries with the exact phrase "cat mouse" will be returned with the highest ranking

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.