Regex splitter
Last updated
Last updated
[string/Regex splitter]
Splits the value received on string
by the regular expression received on regex
.
Example:
"foo.bar,baz"@0 is received via string
"[.,]"@0 is received via regex
["foo", "bar", "baz"]@0 is sent via substrings
Keywords: split, regex
string: string
Receives the string to be split.
regex: string
Receives the regular expression to split by.
substrings: string[]
Sends the split string.