a
(string, default: ""): The first string to concatenate.b
(string, default: ""): The second string to concatenate.result
(string): The concatenated output string.a
input.b
input.result
output.a
input.b
input.result
output will now contain the full name, e.g. “John Doe”.result
of one feeding into the a
input of the next.a
or b
input. The Concat node expects string inputs and may produce unexpected results or errors with other data types.