ArrayTolist()

Transform the array to a list of elements delimiter by the given string

Usage

STRING = ArrayTolist( array, delimiter )
Argument Summary
array Array/XML/Query object
delimiter Delimiter to use; default to comma (,) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ArrayTolist(
   array=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ArrayTolist( ArgumentCollection={
   array : ?, 
   delimiter : ?
} );