|
The text search engine allows queries to be formed from
arbitrary Boolean expressions containing the keywords AND, OR, and NOT,
and grouped with brackets. For example:
- Julia Florida
- finds pages containing 'Julia'
or 'Florida'
- Julia
or Florida
- same as above
- Julia
and Florida
- finds pages containing
both 'Julia' and 'Florida'
- Julia
not Florida
- finds pages containing 'Julia'
but not 'Florida'
- (Julia not
Florida) and
Barrios
- finds pages containing 'Barrios',
plus 'Julia' but not 'Florida'
- Bar*
- finds pages containing
words starting with 'Bar'
|