SKU-, or file names that end in .csv.
A wildcard pattern uses two special characters: * stands for any run of characters, including none, and ? stands for exactly one character. Everything else has to match literally, and the comparison is case-sensitive. So SKU-* covers SKU-1001 and even a bare SKU-, while image?.png covers image1.png but not image10.png. Note that sku-1001 would not match SKU-*, because the letters differ in case. This style of pattern is simpler than a full regular expression; reach for String: Matches regular expression when you need finer control.
Fields
Sample data
With the pattern set toSKU-*, the condition checks whether a product code starts with SKU-.
| Field | Value |
|---|---|
| Value | SKU-* |
| Value | Result |
|---|---|
SKU-1001 | Matches |
PROD-5 | Does not match |