> For the complete documentation index, see [llms.txt](https://docs.cascade.io/cascade/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cascade.io/cascade/functions-and-expressions/functions/text/ltrim.md).

# LTRIM

LTRIM(`text`)

Removes leading whitespace from a text string

### Arguments

| Input  | Description                    |
| ------ | ------------------------------ |
| `text` | Text(s) to strip of whitespace |

### Output

Outputs `text` without leading whitespace

### Example

```
LTRIM("   San Francisco") = "San Francisco"
```
