Forces string concatenation of two expressions. If an expression is not a string, it is converted to a string subtype. Uses the ampersand (&) operator.
An empty expression is treated as a zero-length string.
result = expression1 & expression2
| Item | Description |
|---|---|
| result | Any string variable |
| expression1 | Any expression |
| expression2 | Any expression |