Primitive
string.split
BETAShort name: split
Version: 1.0.0
Split text into an array using a literal separator.
Back to primitive libraryInputs
| Key | Type | Required | Description |
|---|---|---|---|
| limit | number | false | Optional maximum number of returned segments. |
| separator | string | true | Literal separator. Empty string splits into characters. |
| text | string | true | Input text to split. |
Outputs
| Key | Type | Required | Description |
|---|---|---|---|
| result | array | false | Split segments. |