Skip to content

String Join

Joins a list of strings into a single string using a delimiter.

This node combines a list of strings into one single string. It inserts a specified delimiter between each element from the input list.

Example#

If the inputs are: - segments: ["First", "Second", "Third"] - delimiter: -

The output result will be: "First-Second-Third"

Inputs#

Port Description
Delimiter
The string to insert between each segment.
String Segments
The list of strings to join together.

Outputs#

Port Description
The joined string.

ID: core/string-join@v1