Inputs
Name | Abbreviation | Type | Access | Description |
String | S | String | Item | The string to split |
Separator | S | String | Item | The separator to use |
Outputs
Name | Abbreviation | Type | Access | Description |
Strings | S | String | List | The split strings |
How To:
Feed in a string
This could be text from any string node, like string, stringify, or an Input Parameter with the string type
Input the separator
You can type the desired separator into the box, or connect another string node’s output
The separator is the text element from the initial string that denotes where to split the string into a list.
IE:
If this is the feeding string:
This is item 1, this is item 2, this is item 3And you use comma (
,) as the separatorYour resulting list will be:
[“this is item 1”,“this is item 2”,“this is item 3”]The output is the resulting list of strings

