Operator | Description |
---|---|
equals | Whether the first value exactly matches the second value. |
is not | |
is in | |
is not in | |
is less than | Whether the first value is less than the second value. If either of the values are not numbers (and cannot be converted to numbers), this will be false. |
is less than or equal to | Whether the first value is less than or equal to the second value. If either of the values are not numbers (and cannot be converted to numbers), this will be false. |
is greater than | Whether the first value is greater than the second value. If either of the values are not numbers (and cannot be converted to numbers), this will be false. |
is greater than or equal to | Whether the first value is greater than or equal to the second value. If either of the values are not numbers (and cannot be converted to numbers), this will be false. |
contains | Whether the first value is contained anywhere within the second value. |
starts with | Whether the first value begins with the second value. |
ends with | Whether the first value ends with the second value. |