Skip to main content
Skip table of contents

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

NONE
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.