Using String Literals

A string literal can be used in filter queries to match strings.

The following wildcards can be used:

  • ? matches any single character
  • * matches any number of characters.

Wildcards can be escaped using the \ character. For example, the literal ‘my\?text’ will match the string ’my?text’.

Escape characters can be escaped using \\ characters. For example, the literal ‘my\\text’ will match the string ’my\text’.