Join Text List
Uncontrolled node
Overview
The Join Text List node combines all the items in a list of text into a single text string, using a defined separator.
This is useful for producing readable output from lists, creating messages, or formatting content for display, storage, or transmission.
Inputs
Input | Type | Description | Default |
---|---|---|---|
List | List (Text) | A list of text values to join together | - |
Outputs
Output | Type | Description |
---|---|---|
Output | Text | A single string made by joining the list values with the separator |
Panel Controls
The Separator field in the right-side panel allows you to define the character or string used to join the text list items.
- Common separators include:
", "
(comma and space)
" - "
(dash)
"\n"
(newline)
" "
(space)
Example: Comma-Separated Text
If your list is:
["hello", "world"]
and the separator is:
", "
The output will be:
"hello, world"
Tip
Use newline (\n
) separators for multiline outputs, or an empty separator (""
) to join text directly without spacing.