Skip to main content

String Operations

OperationDescriptionExample
valueMatches if the value contains the specified stringabc
=valueMatches the value exactly=abc
*value*Matches if the value contains the specified string*abc*
value*Matches if the value starts with the specified stringabc*
*valueMatches if the value ends with the specified string*abc
!valueMatches if the value does not equal the specified string!abc
!*value*Matches if the value does not contain the specified string!*abc*
!value*Matches if the value does not start with the specified string!abc*
!*valueMatches if the value does not end with the specified string!*abc
/regex/Matches if the value matches the regular expression pattern/^abc.*$/
!/regex/Matches if the value does not match the regular expression pattern!/^abc.*$/
tip

All comparisons are case-insensitive.


Examples

InputValue to MatchResult
hellohello*Matches
hello worldhello*Matches
abcxyzabcMatches
abcxyz*abc*Matches
xyzabc*abcMatches
abc123value*No Match
123abc*valueMatches
abc!abcNo Match
abcdef!*abc*No Match
xyz!*abc*Matches
abc123/abc/Matches
123abc/abc/Matches
xyz!/abc/Matches
abc!/abc/No Match
abcdef!value*Matches
abcvalue*No Match