split
split(input: String)
split(input: String, delimiter: String, count: Integer)
| Parameter | Type | Description |
|---|---|---|
| input | String | String to split up into parts |
| (optional) delimiter | String | Where to split (default: " ") |
| (optional) count | Integer | The amount of substrings to produce |
Returns
(List) A list of all the different parts as a result of splitting the string.