Split string by delimiter
Splits a string into parts using the given delimiter. Returns an array of elements and their count.
Splits a string into parts using the given delimiter. Returns an array of elements and their count.
What input parameters does the robot accept?
| Parameter | Type | Required? | Default |
|---|---|---|---|
| Source string | string | yes | |
| Delimiter | string | yes |
What does the robot return?
| Parameter | Type |
|---|---|
| String parts | string |
| Parts count | int |