Data / Strings
data/string_split
String Split
Splits a string by a delimiter and returns a list of parts.
Inputs
| Name | Type | Optional | Description |
|---|---|---|---|
text |
string | The string to split. | |
delimiter |
string | ✓ | The split delimiter. |
Outputs
| Name | Type | Description |
|---|---|---|
list |
list | The resulting parts as a list. |
size |
number | Number of parts. |
Properties
| Key | Type | Default | Description |
|---|---|---|---|
delimiter |
string | "," |
Delimiter |