Skip to main content

String Operations

OperationDescriptionExample
=Matches the value exactlyabc
*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

Note: All comparisons are case-insensitive.