noneof

Purpose

Finds documents that do not contain any of the listed arguments. This function is equivalent to the operator not.

Syntax

noneof(term_1, term_2, [term_3,…​])

Arguments

All of the arguments must be of the same data type, otherwise PolyAnalyst will report an error. At least two arguments must be provided.

Returned Value

Documents matching the query.

Examples

noneof("dog", "cat","horse","elephant") = not (dog, cat, horse, elephant) = not orn(dog, cat, horse, elephant) returns documents not containing the words "dog", "cat", "horse" or "elephant".