Joiner

[string/Joiner]


Joins an ordered list of strings into a single string. Example:

  1. ["Hello", "!"]@0 is received via substrings

  2. " world"@0 is received via separator

  3. "Hello world!"@0 is sent via joined


Keywords: string, join

Input ports

  • separator: string

    The separator string

  • substrings: string[]

    Array containing the parts

Output ports

  • joined: string

    Sends the joined parts, separated by the separator string.

Last updated