hugo/docs/content/en/functions/strings/TrimRight.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

28 lines
723 B
Markdown

---
title: strings.TrimRight
description: Returns the given string, removing trailing characters specified in the cutset.
categories: []
keywords: []
action:
aliases: []
related:
- functions/strings/Chomp
- functions/strings/Trim
- functions/strings/TrimLeft
- functions/strings/TrimPrefix
- functions/strings/TrimSuffix
returnType: string
signatures: [strings.TrimRight CUTSET STRING]
aliases: [/functions/strings.trimright]
---
```go-html-template
{{ strings.TrimRight "a" "abba" }} → abb
```
The `strings.TrimRight` function converts the arguments to strings if possible:
```go-html-template
{{ strings.TrimRight 54 12345 }} → 123 (string)
{{ strings.TrimRight "eu" true }} → tr
```