Implode(
array:array,
[string:separator],
[string:flags]
)
→ string
Concatenates the members of an array to a single string, joining them with the specified separator.
If separator isn't specified it will join with spaces by default.
The optional flags are:
| q | Quote individual strings if needed (i.e. if they contain a space). |
| Q | Always quote individual strings. |
Example:
arr = ArrayCreate("The", "quick", "brown", "fox");
Output(Implode(arr));
--> "The quick brown fox"
See also: Explode