hugo/docs/content/en/functions/strings/TrimLeft.md
Bjørn Erik Pedersen 5fd1e74903
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
```
git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash
```

Closes #11925
2024-01-27 10:48:57 +01:00

716 B

title description categories keywords action aliases
strings.TrimLeft Returns the given string, removing leading characters specified in the cutset.
aliases related returnType signatures
functions/strings/Chomp
functions/strings/Trim
functions/strings/TrimPrefix
functions/strings/TrimRight
functions/strings/TrimSuffix
string
strings.TrimLeft CUTSET STRING
/functions/strings.trimleft
{{ strings.TrimLeft "a" "abba" }} → bba

The strings.TrimLeft function converts the arguments to strings if possible:

{{ strings.TrimLeft 21 12345 }} → 345 (string)
{{ strings.TrimLeft "rt" true }} → ue