User Guide

Table Of Contents
80 Flash Lite Operators
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)
lt (string less
than)
Compares the string representation of expression1 to the string
representation of
expression2 and returns a true value if expression1
is less than
expression2; otherwise, it returns false.
le (string less than
or equal to)
Compares the string representation of expression1 to the string
representation of
expression2 and returns a true value if expression1
is less than or equal to
expression2; otherwise, it returns false.
– (subtract)
Used for negating or subtracting.
-= (subtraction
assignment)
Assigns expression1 the value of expression1 - expression2.
Operator Description