Fields
Glue
The separator character used to separate the values.Sample data
| Input | Glue | Result |
|---|---|---|
| [“A”, “B”, “C”] | ”, " | "A, B, C” |
| {“name”: “A”, “price”: 19} | ” " | "A 19” |
Joins array items or object values into a single string using a separator.
| Input | Glue | Result |
|---|---|---|
| [“A”, “B”, “C”] | ”, " | "A, B, C” |
| {“name”: “A”, “price”: 19} | ” " | "A 19” |