Operators
You can use the following logical and mathematical operators in expressions:
|
Operator |
Description |
|
( |
Left parenthesis |
|
) |
Right parenthesis |
|
> |
Greater than |
|
< |
Less than |
|
>= |
Greater than or equal to |
|
<= |
Less than or equal to |
|
== |
Equal to |
|
!= |
Not equal to |
|
&& |
Logical conjunction (And) |
|
|| |
Logical disjunction (Or) This operator is used to enter an 'or' condition. |
|
+ |
Plus |
|
− |
Minus |
|
* |
Multiply |
|
/ |
Divide |
|
% |
Modulo operation |
|
^ |
Power |
|
& |
Concatenation You can use this operator to add a text to the expression. This text is then attached to the value of the tag in the notification message. |
|
! |
Logical negation (Not) |