> 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/left.md).

# Left

Returns a leftmost substring of a string value

```mathematica
Left("Central region", 7) → "Central"
Left("New York City", 8) → "New York"
```

#### Inputs

`Left(string, length)`

* `string` - A text value
* `length` - Length of the resulting text
