Operators
The expression syntax supports the operators listed below.
In the event that an expression consists of several steps, the order of processing of each operation is determined by the algebraic logic. You can use levels of parentheses to force the order of operators.
Arithmetic operators:
|
^ |
Exponentiation |
|
* |
Multiplication |
|
/ |
Division (quotient) |
|
\ |
Integer division (quoto) |
|
Mod |
Remainder of division |
|
+ |
Algebraic addition |
|
- |
Algebraic subtraction |
Logical Operators
|
And |
Logical And or bitwise And |
|
Not |
Logical negation or reversal bitwise |
|
Or |
Logical or bitwise OR |
|
Xor |
Xor (exclusive or) logical or bitwise Xor |
Comparison Operators
|
< |
Less than |
|
<= |
Less than or equal to |
|
> |
Greater than |
|
> = |
Greater than or equal to |
|
= |
Equal to |
|
<> |
Different from |
Concatenation Operators
|
& |
String concatenation |