Splits a string into a list of substrings based on the specified delimeter. For example, the delimeter "," will split "a,b,c" into the strings "a", "b", and "c".
Interface
Inputs
| Parameter | Details | Possible Types |
|---|---|---|
| String | The string to split into substrings. Primary Input | string |
| Delimeter | The character(s) that separate the substrings. These are not included in the outputs. Default: | string |
| Delimeter Escaping | Whether to convert escape sequences found in the delimeter 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 | Vec<String> |