> For the complete documentation index, see [llms.txt](https://docs.tabula.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tabula.io/data-transformation/formulas/string-functions/split.md).

# Split

Split a value by the specified string delimiter

```mathematica
Split("H-m", "-") → ["H","m"]
Split("Delimiter","im") → ["Del","iter"]
```

#### Inputs

`Split(string, delimiter, [isCaseSensitive, maxNumberOfChunks])`

* `string` - A text value to split
* `delimiter` - Text delimiter to split by
* `[isCaseSensitive]` - **\[optional**: `true` by default\*\*]\*\* - Set `false` if search should be case **insensitive**
* `maxNumberOfChunks` - TBD
