Skip to main content

join() Operation

Syntax

aStringArray.join(aSeparatorString)

Semantics

Concatenates all strings in aStringArray and separates them by aSeparatorString.

Substitutables

aStringArray

An Array of String elements. 

aSeparatorString

A separator of type String.

Examples

CODE
set joined = stringArray.join(", ");
  
local stringArray = apply element.aStringValue to anArrayOfComplexElements;
set joined = stringArray.join(", ");

Related Pages:

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.