Join Array
Last updated
Last updated
Combines all items in a list into a single text string, with a specified character or string between each item. This is useful for creating comma-separated lists, space-separated words, or any delimited text.
array
The list of items to join together
List
Yes
delimiter
The character or string to insert between items
String
No
value
The combined text string with delimiters
String
Drag the Join Array node into your graph.
Connect a list (like ["red", "green", "blue"]
) to the "array" input.
Set the "delimiter" to the character you want between items (like ", "
).
Run the graph—your output will be a single string with the items joined ("red, green, blue"
).
The default delimiter is a hyphen (-
), but you can use any string, including spaces, commas, or even multi-character strings.
Non-string items in the array will be converted to strings automatically.
CSV Generation: Create comma-separated values for data export.
UI Display: Format lists of items for display in a user interface.
: For the reverse operation—breaking a string into an array of parts.