REPORTER 22.1
Condition Types
11.2. Condition types
| Condition type | Description |
| is equal to | Treats the value as a string. Strips leading and trailing white space from the string and compares it to the conditon value. TRUE if the strings are identical. This can also be used to compare integers but should not be used to compare floating point numbers. |
| is not equal to | As above, but TRUE if the strings are different |
| is greater than | Treats the value as a real number. It first tries to convert the value and the condition value to real numbers. If this fails the condition is FALSE. If it succeeds then the condition is TRUE if the value is greater than the condition value. |
| is less than | As above, but TRUE if the value is less than the condition value. |
| is between | As above, but TRUE if the value is between the two condition values. |
| is not between | As above, but TRUE if the value is not between the two condition values. |
| contains string | Treats the value as a string. TRUE if the value contains the condition string. |
| does not contain string | Treats the value as a string. TRUE if the value does not contain the condition string. |
| matches regex | Treats the value as a regular expression . TRUE if the regular expression matches. |
| does not match regex | Treats the value as a regular expression . TRUE if the regular expression does not match. |