Skip to main content
This documentation was AI-generated. If you find any errors or have suggestions for improvement, please feel free to contribute! Edit on GitHub
The StringConcatenate node combines two text strings into one by joining them with a specified delimiter. It takes two input strings and a delimiter character or string, then outputs a single string where the two inputs are connected with the delimiter placed between them.

Inputs

ParameterData TypeRequiredRangeDescription
string_aSTRINGYes-The first text string to concatenate
string_bSTRINGYes-The second text string to concatenate
delimiterSTRINGNo-The character or string to insert between the two input strings (default: empty string)

Outputs

Output NameData TypeDescription
outputSTRINGThe combined string with the delimiter inserted between string_a and string_b