concatenate

SpecialNodes concatenate

output ports:
Name Type Description Optional

separator

string

inserted between every adjacent pair of strings when concatenating

yes

input ports:
Name Type Description Optional

input

string

a string to be concatenated to the result

no

complete

?0

output the concatenated result if true (interpreted as boolean)

no

output ports:
Name Type Description Optional

output

string

concatenation of inputs

no

concatenate reads its two inputs ports. the input string is added to the list of accumulated strings. if complete is true, the accumulated strings are concatenated with separator between each adjacent pair of strings, the concatenated result is output to the output port, and the accumulator is reset to empty. Note that there is no output except when the complete input is true. If the separator port is not connected, then the separator is the empty string. It is recommended that you read the Iteration section of the Dataflow in Coreograph document in addition to the information presented here.