# SPLIT

SPLIT( `text`, `delimiter` , `index`)&#x20;

Returns a portion of a `text` based on a given `delimiter` and `index`

### Arguments

| Argument    | Description                          |
| ----------- | ------------------------------------ |
| `text`      | Text to split at given delimiter     |
| `delimiter` | Delimiter with which to split `text` |
| `index`     | Index of split `text` to return      |

### Output

Outputs a portion of a `text`

### Example

```
SPLIT( "Missoula", "o", 1 )
>> "Miss"

SPLIT( "Missoula", "o", 2 )
>> "ula"
```
