This condition checks to see if a given string matches a given pattern using standard glob-style matching. Each string is substituted for virtual text before comparison.
Standard Properties
See Standard Condition Properties.
Advanced Properties
Operator
|
matches |
True if the string matches the pattern. |
|
does not match |
True if the string does not match the pattern. |
Pattern
The pattern to match the string against.
The pattern argument may contain any of the following special characters:
?
Matches any single character.
*
Matches any sequence of zero or more characters.
[chars]
Matches any single character in chars. If chars contains a sequence of the form a-b then any character between a and b (inclusive) will match.
\x
Matches the character x.
{a,b,...}
Matches any of the strings a, b, etc.
String
The string to match against the pattern.