Skip to main content
Passes when the incoming text does not fit a wildcard pattern you supply. This is the opposite of String: Matches wildcard pattern: it lets you act only on values that fall outside a certain shape, for example everything whose code does not start with 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 to SKU-*, the condition checks whether a product code does not start with SKU-.
FieldValue
ValueSKU-*
ValueResult
PROD-5Matches
SKU-1001Does not match