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, soBa[rz]matches bothBarandBaz.
Fields
Sample data
The condition was pointed at each order’sregion value and set to match references for the Netherlands or Germany.
| Field | Value |
|---|---|
| Patterns | ["NL-*", "DE-*"] |
| Value | Matches? |
|---|---|
NL-utrecht | Yes |
FR-paris | No |