String Operators (+)

Returns concatenated strings.

Syntax

= value1 + value2

Arguments

value1

A value which has to be concatenated. It can contain strings (“Iron Speed”, “1234”), or values of a variable (e.g, ProductName).

value2

A value which has to be concatenated. It can contain strings (“Iron Speed”, “1234”), or values of a variable (e.g, ProductName).

Examples

Example

Returns

= “Iron” + “Speed” + “Designer”

The string containing the words concatenated together.

= FirstName + “.” + “LastName”

The value of FirstName and LastName concatenated with a “.” as separator.

= “$” + “1234”

$1234.