String Join

Joins a list of strings together with a separator between each pair. This is the inverse of the String Split node.

For example, joining ["a", "b", "c"] with separator ", " produces "a, b, c".

Interface

Inputs

ParameterDetailsPossible Types
Strings

The list of strings to join together.

Primary Input

Vec<String>
Separator

The text placed between each pair of strings.

Default: ,

String
Separator Escaping

Whether to convert escape sequences found in the separator into their corresponding characters:

"\n" (newline), "\r" (carriage return), "\t" (tab), "\0" (null), and "\" (backslash).

Default: true

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

String