String Expressions

Syntax

{ variable | literal } [ & stringExpression [...n ] ]

Parameters

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