The Operator parameter includes the options described in the following table.
Function | Description |
---|---|
is equal | The value must match the target exactly. |
does not equal | The value does not exactly match the target. |
is greater than | The value is greater than the target value. |
is greater than or equal | The value is greater than or equal to the target value. |
is less than | The value is less than the target value. |
is less than or equal | The value is less than or equal to the target value. |
starts with | The value starts with the same string as in the target. |
ends with | The value ends with the same string as in the target. |
contains | The value contains (anywhere) the string in the target. |
does not contain | The value does not contain (anywhere) the string in the target. |
is empty | The target must not contain a value. |
is not empty | The target must contain a value. |