Skip to main content
The opposite of “Array or object: Contains wildcard match”. It checks the incoming value against a list of wildcard patterns and passes only when the value matches none of them. Use this to exclude values that follow a certain naming convention, for example to process every order reference except those beginning with TEST-, or to skip product codes ending in -OLD. Patterns support wildcards:
  • * matches any run of characters, including none.
  • ? matches exactly one character.
  • [rz] matches a single character from the set, so Ba[rz] matches both Bar and Baz.
Matching is case sensitive and works on a single text value.

Fields

Sample data

The condition was pointed at each order’s region value and set to exclude references for the Netherlands and Germany.
FieldValue
Patterns["NL-*", "DE-*"]
ValueMatches?
FR-parisYes
NL-utrechtNo