Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following operators can be used inside Portrait:

Op.

Description

Example

+

signifies AND operation.

Vienna +Orchestra

|

signifies OR operation

Vienna | Salzburg

-

negates a single term

Orchestra -Vienna

wraps a number of terms to signify a phrase for searching

“Vienna Philarmonic Orchestra”

*

at the end of a term signifies a prefix query

Vie*

()

signify precedence

Orchestra (Salzburg | Vienna)

~

fuzzy search

See below “Fuzziness”

Vienne~

~N

after a word signifies edit distance (fuzziness)

See below “Fuzziness”

Vienne~1

~N

after a phrase signifies slop amount

See below “Slop value”

“Vienna Centre“~3

In order to search for any of these special characters, they will need to be escaped with \. E.g: C\+\+.

Info

By default, terms are connected by AND; so you don’t need to use the operator + in practice.

...

A fuzzy search will return a list of results based on likely relevance, even though search argument words and spellings may not exactly match. Exact and highly relevant matches appear near the top of the list.

...