List: concat to a string The “List: concat to a string” mapper joins array elements with a stringDocumentation Index
Fetch the complete documentation index at: https://docs.alumio.com/llms.txt
Use this file to discover all available pages before exploring further.
Fields
Glue
The string to use to join the array elements. By default, a space is used.Sample data
| Input | Glue | Output |
|---|---|---|
| [“A”,“B”,“C”] | ” “ | “A B C” |
| [“A”,“B”,“C”] | “ - “ | “A - B - C” |