This form enables the whole demo-WEB to be searched for words (strings)
or combinations thereof. A ranked list (file names or titles) of relevant documents with
links to them will be presented if there are any hits in response to the query. A short
explanation of the Query Language with some examples can be
found below.
The Query Facility is based on boolean logic which enables the usage of the boolean
operators: AND, OR, and NOT. It is also
possible to put query expressions between parenthesis. For example:
- culture europe
Delivers documents containing the string 'culture' or 'europe'
- culture OR europe
See above.
- culture AND europe
Delivers documents containing both strings 'culture' as well as 'europe'.
- culture NOT europe
Delivers documents containing the string 'culture' but not the string 'europe'.
- (culture AND europe) NOT cultivate
Delivers documents containing both strings 'culture' as well as 'europe',
but not 'cultivate'.
- cult*
Delivers documents containing a string starting with the characters 'cult'
(* : wildcard).
Back to top
|