add (string concatenation)

Availability

Flash Lite 1.0.

Usage

string1 add string2

Operands

string1, string2 Strings.

Description

Operator; concatenates (combines) two or more strings.

Example

The following example combines two string values to produce the string catalog.

conStr = "cat" add "alog";
trace (conStr);        // output: catalog

See also

+ (numeric add)