|
|
This search engine allows queries to be formed
from Boolean expressions containing the keywords AND, OR, and NOT, and grouped
with parentheses. For example:
- property tax
- finds documents containing the word
'property' or 'tax'
- property or tax
- same as above
- property and tax
- finds documents containing both the words
'property' and 'tax'
- property not tax
- finds documents containing the word
'property' but not the word 'tax'
- (property not tax) and owner
- finds documents containing the words 'owner'
and 'property' but which do not contain the word 'tax'
- prop*
- finds documents containing words starting
with 'prop'
|