Skip to main content

Join Strings

Join a list of strings (concatenate)

Holly Conrad Smith avatar
Written by Holly Conrad Smith
Updated over a week ago

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.

  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.

Did this answer your question?