Concatenation Operators

Concatenation operators append string expressions to each other.

Operator

Description

&

Concatenates the following string expression to the end of the preceding string expression.

Its behavior is similar to the Attach logic command.

&+

Concatenates the following string expression to the end of the preceding string expression and includes a space between them. For example, “John” &+ “Jones” becomes “John Jones”.

Its behaviour is similar to the AttachAndSpace logic command.