You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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

Related Pages:

  • No labels