String Concatenation
String concatenation appends the second string to the first string in an expression. For other string operations, use built-in functions.
Operator |
Description |
& |
Concatenates two strings |
+ |
Concatenates two strings |
Logical and Bitwise
Logical and bitwise operators perform logical manipulations between two integer terms in an expression.
Operator |
Description |
And |
Performs a logical conjunction on two Boolean expressions, or bitwise conjunction on two numeric expressions. |
Not |
Performs logical negation on a Boolean expression, or bitwise negation on a numeric expression. |
Or |
Performs a logical disjunction on two Boolean expressions, or bitwise disjunction on two numeric values. |
Xor |
Performs a logical exclusion operation on two Boolean expressions, or a bitwise exclusion on two numeric expressions. |
AndAlso |
Performs logical conjunction on two expressions. |
OrElse |
Performs logical disjunction on two expressions. |