Skip to main content

Concatenation Operator (&)

Used to force string concatenation of two expressions.

Synopsis

result = expression1 & expression2

Arguments

The & operator syntax has these parts:

result Any variable.
expression1 Any expression.
expression2 Any expression.

Description

Whenever an expression is not a string, it is converted to a String subtype. Any expression that is Empty is also treated as a zero-length string.

See Also

FeedbackOpens in a new tab