Concat(
int:count,
string:string1,
string:string2,
[string:string...],
[string:joiner],
[string:final]
)
→ string
Joins one or more strings together and returns the result. Empty strings are skipped.
The joiner string is used to join each pair of strings. If not provided, a space is the default. The final string is used to join the final string. If not provided, the regular joiner string is used.
Example:
Output(Concat(4, "one", "two", "three", "four", ", ", " and ")); --> one, two, three and four