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” |
The List: concat to a string mapper joins array elements with a string
| Input | Glue | Output |
|---|---|---|
| [“A”,“B”,“C”] | ” “ | “A B C” |
| [“A”,“B”,“C”] | “ - “ | “A - B - C” |