SKU-, or files that do not end in .tmp.
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 with SKU-*, the value PROD-5 passes this condition because it does not fit the pattern, while SKU-1001 fails because it does fit. When you need finer control than wildcards allow, see String: Does not match regular expression.
Fields
Sample data
With the pattern set toSKU-*, the condition checks whether a product code does not start with SKU-.
| Field | Value |
|---|---|
| Value | SKU-* |
| Value | Result |
|---|---|
PROD-5 | Matches |
SKU-1001 | Does not match |