Skip to main content
Array: Join into string Joins array or object values into a string.

Fields

Glue

The string to use to join the values. By default, a space is used.

Sample data

InputGlueOutput
[“A”,“B”,“C”]” ""A B C”
[“A”,“B”,“C”]” - ""A - B - C”