STRING_JOIN
Description
Returns a single concatenated string formed by joining multiple provided objects using the specified separator string. Each object is converted to its string representation before concatenation.
Syntax
STRING_JOIN(...object, separator_string) -> String
Parameters
| Parameter | Data Type | Required | Description |
|---|---|---|---|
| ...object | Object | Yes | Objects or values to concatenate. |
| separator_string | String | Yes | The separator used between each object's string representation. |
Example
STRING_JOIN(1, 2, 3, "-")
-- Returns "1-2-3".