String Split

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

ParameterDetailsPossible 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: \n

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: true

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

List<String>