Search\Syntax

Syntax

Basics of the search function

-          Expressions are differentiated in single words and sentences

-          Multiple words are grouped as a sentence using quotation marks. E.g. “Operational Pump”

-          Multiple terms can be combine to form complex search parameters with Boolean operators (see syntax)

 

Different Search options

Example 1

Example 2

Search for a word

Pump

 

Search for an expression with more than one word with “”

"The pump is operational"

 

Search for two expressions with AND or &&(AND is the default operator)

Pump AND operational

Pump && Operational

Search for a mandatory expression

+Pump operational

 

Search for an expression or a different one with OR, ||  or “blank”

Pump OR operational

Pump || operational

Search for a mandatory expression and omit an expression with NOT or -

pump NOT operational

+pumpoperational

Search for an expression and a sentence with AND and  ""

Pump AND "is operational"

"the pump" AND operational

Search with Wildcards "?" (Don’t use it as the first character)

Pu?p

p??p

Search with Wildcards "*"

*um*

pu*p

Use Brackets ()

(Pump OR car) AND operational

(Pump AND operational) OR (car AND red)

Special characters in search term

\=200

\*txt && \+4

There are some reserved characters (+ - && || ! ( ) { } [ ] ^ " ~ * ? : \). When searching, take note that these symbols are interpreted as operators. If they should be part of the expression, type a backslash (\) in front of the character.

 

 

Top of Page