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

ParameterData TypeRequiredDescription
...objectObjectYesObjects or values to concatenate.
separator_stringStringYesThe separator used between each object's string representation.

Example

STRING_JOIN(1, 2, 3, "-")
-- Returns "1-2-3".