This document explains the Join List Items node, which combines list items into a single text string.

Node Inputs

Required Fields

  • List: List of items to combine

Optional Fields

  • Join Characters: Separator between items. Deafult is comma ,
  • Join by Newline: Put each item on new line

Node Output

  • Joined Text: Combined string result

Node Functionality

The Join List Items node:

  • Merges list elements
  • Adds custom separators
  • Supports line breaks
  • Preserves item order
  • Handles empty items

Common Use Cases

  1. CSV Creation:
List: ["name", "email", "phone"]
Join Characters: ","
Result: "name,email,phone"
  1. Multi-line Text:
List: ["Line 1", "Line 2", "Line 3"]
Join by Newline: true
Result:
Line 1
Line 2
Line 3
  1. Custom Formatting:
List: ["apple", "banana", "orange"]
Join Characters: " | "
Result: "apple | banana | orange"

Important Considerations

  1. Choose appropriate separator
  2. Consider readability needs
  3. Preserves item order

Additional Information

Video Tutorial

In summary, the Join List Items node helps convert lists into formatted text strings for various output needs in your Gumloop workflows.