List Operations
Join List Items Node
Join list items into a single string
Joins a list of items into a single piece of text. For example, joining [“a”, “b”, “c”] becomes: “abc”.
Node Inputs
- Type: The type of list you want to create
- Type:
Dropdown
- Type:
- List to Join: List of items to join as text
- Type:
List<T>
(based on the type of list you choose)
- Type:
- Join Characters: Specified characters to join list items into a single string (e.g., if you were to join the above list using “@”, the output would be: a@b@c.
- Type:
Text
- Type:
Node Parameters
- Join By Newline: Separate each element by a new line in the final output string.
You can either Join Characters or Join by Newline.
Node Outputs
- Output: List as a joined string.
- Type:
Text
- Example usage:
{{join_list_item_0.joined_text}}
- Type: