Edit online

Advanced Search

How to use advanced query syntax to build more precise searches across task files.

Along with simple searches, the Content Fusion search engine also supports advanced query syntax that allows you to create more complex, flexible, and useful queries to make the search more precise. This topic describes the advanced search features that you can use when searching. A short reference is also available in the UI via the help icon () next to the search field.

Boosting

You can increase the relative importance of a term by adding a caret (^) with a numeric boost factor after the term.

Example - Increase the relevance of documents that contain dita:

dita^4 webhelp
Note:
The default boost factor is 1. Values must be positive and can be less than 1 (for example, 0.2).

Boolean Operators

Boolean operators combine terms logically. The supported operators are AND, OR, +, NOT, and -. Operators must be in ALL CAPS.

When no operator is specified between terms, OR is assumed.

Example - Find documents that contain either term:

"dita webhelp" dita

AND - Documents must contain both terms:

"dita webhelp" AND "content search"

+ - Term is required:

+dita webhelp

NOT - Exclude documents with the following term:

"dita webhelp" NOT "content search"

- - Another way to exclude results:

"dita webhelp" -"content search"

Field Grouping

Use parentheses to group multiple conditions within a field.

Example - Find titles that contain both dita and content search.

title:(+dita +"content search")

Escaping Special Characters

To search for characters that are part of the query syntax (for example ( ) * ? :), escape those characters with a backslash (\):

\(1\+1\)\:2