Skip to main content
Skip table of contents

join() Operation

Syntax
NONE
aStringArray.join(aSeparatorString)
SemanticsConcatenates all strings in aStringArray and separates them by aSeparatorString.
SubstitutablesaStringArrayAn Array of String elements. 
aSeparatorStringA separator of type String.
Examples
NONE
set joined = stringArray.join(", ");
  
local stringArray = apply element.aStringValue to anArrayOfComplexElements;
set joined = stringArray.join(", ");
JavaScript errors detected

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

If this problem persists, please contact our support.