Skip to main content
Checks the incoming value against a list of wildcard patterns and passes when it matches at least one of them. Unlike a plain “Contains” check, you do not need to know the exact value: a pattern such as NL-* matches anything that starts with NL-. Use this to branch on values that follow a naming convention, for example to act on any order reference beginning with WEB-, or to catch product codes ending in -EU. 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 match references for the Netherlands or Germany.
FieldValue
Patterns["NL-*", "DE-*"]
ValueMatches?
NL-utrechtYes
FR-parisNo