%arrayImplode()

Aliases%arrayImplode()
Parametersarray @array [, string @separator]

    This function will join together the values of @array with @separator
being joined between each value. If @separator is not defined then the
values will be joined together without any separator.

Example:

@data = %array( one, two, three )
%echo( %arrayImplode( @data, ", " ) )

Output:

one, two, three

See Also%stringExplode()