image.png

Join Lists of strings into a single new string with a designated separator.

This is similar to concatenate function in other software.

Inputs

Name Abbreviation Type Access Description
Strings S String List The strings to join
Separator S String Item The separator to use

Outputs

Name Abbreviation Type Access Description
String S String Item The joined string

How To

  1. 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>

    image.png

  2. 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

  3. 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.

image.png