Syntax
{ variable | literal } [ & stringExpression [...n ] ]
Parameters
variable
A string-primitive variable.
literal
An explicit string value.
concatenationOperator stringExpression
A concatenation operator to apply to a composite string expression, in conjunction with the specified following string expression.
Description
String expressions are compositions of string values, which might be recursively defined as string expressions themselves.
Examples
Example 1
MyString & " the rest"
Example 2
"The boy stood" &+ "on the burning deck,\n" & " whence all around had" &+ "fled\n"
Example 3
ThisString := "brown" &+ "fox" ThatString := "The quick" & ThisString & "."
See Also