Regex splitter

[string/Regex splitter]


Splits the value received on string by the regular expression received on regex. Example:

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

  2. "[.,]"@0 is received via regex

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


Keywords: split, regex

Input ports

  • string: string

    Receives the string to be split.

  • regex: string

    Receives the regular expression to split by.

Output ports

  • substrings: string[]

    Sends the split string.

Last updated