"Simple Search" searches the local database using the standard Tiki search.
Logical Search Operators
The search is case-insensitive and uses a logical OR operator by default.
Thus, searching for "hello world" implies searching for "hello OR world"
Valid operators NOT, AND, OR (Can be in upper or lower case)
Operator | Syntax | Description |
---|---|---|
OR | arg1 OR arg2 | Resulting pages must contain either arg1 or arg2 or both |
AND | arg1 AND arg2 | Resulting pages must contain both arg1 and arg2 |
NOT | arg1 NOT arg2 | Resulting pages must contain arg1, but not arg2 |
Example
Having 3 pages
hello there
hi world
hi and hello world
Will give the following results
Search | Result pages |
---|---|
hello world | hello, world, hello world |
hello and world | hello world |
hello not world | hello |