String Split

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

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

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

bool

Outputs

ProductDetailsPossible Types
Result

The value produced by the node operation.

Primary Output

Vec<String>