Versions Compared

Key

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

...

The mode property defines the type of search:

  • Plain : Find strings that match exactly.

  • Prefix: Find strings starting with the value.

  • Suffix: Find strings ending with the value.

  • Infix: Find strings containing the value

  • Wildcards: Find strings by this wildcard pattern. You can use * which stands for no character or any number of characters. Use ? to stand for zero or one character.

    • Example: “abc*xyz” finds “abcxyz”, “abc…..xyz” but not “…abcxyz…” or “alpha”

  • Regex: The value must be a valid regular expression. Please note that we only support the basic regex features.

  • Empty: Find strings without value. The value-property is disregarded and can be omitted with this mode.

CASE DIFFERENCES

In most cases, the search disregards case.

...