
Join Lists of strings into a single new string with a designated separator.
This is similar to concatenate function in other software.
| Name | Abbreviation | Type | Access | Description |
|---|---|---|---|---|
| Strings | S | String | List | The strings to join |
| Separator | S | String | Item | The separator to use |
| Name | Abbreviation | Type | Access | Description |
|---|---|---|---|---|
| String | S | String | Item | The joined string |
Create or connect a list of strings.
You can create Lists using encapsulate in list.
<aside> đź’ˇ
To create a list without a mediating node, hold “shift” to connect multiple outputs into the same input
</aside>

Determine the separator
The separator is usually a character like space, a comma, or some other punctuation.
The default is a comma.
Type the separator into the box in the node, or connect a string output from another node to use as the separator
The output is a new string.
Note, the output is not a list. It is a string combining the list items, separated by the separator.
