Splitter

[string/Splitter]


Splits the value received on string by the value received on separator. Example:

  1. "foo.bar.baz"@0 is received via string

  2. "."@0 is received via separator

  3. ["foo", "bar", "baz"]@0 is sent via substrings


Keywords: string, split

Input ports

  • separator: string

    The separator string

  • string: string

    The string to be splitted

Output ports

  • substrings: string[]

    Sends the array of the parts.

Last updated