Splits a string into a list of substrings based on the specified delimiter. This is the inverse of the String Join node.
For example, splitting "a, b, c" with delimiter ", " produces ["a", "b", "c"].
Interface
Inputs
| Parameter | Details | Possible Types |
|---|---|---|
| String | The string to split into substrings. Primary Input | String |
| Delimiter | The character(s) that separate the substrings. These are not included in the outputs. Default: | String |
| Delimiter Escaping | Whether to convert escape sequences found in the delimiter into their corresponding characters: "\n" (newline), "\r" (carriage return), "\t" (tab), "\0" (null), and "\" (backslash). Default: | bool |
Outputs
| Product | Details | Possible Types |
|---|---|---|
| Result | The value produced by the node operation. Primary Output | List<String> |