hugo/docs/content/en/functions/strings.TrimRight.md
2023-05-22 16:47:07 +02:00

20 lines
513 B
Markdown

---
title: strings.TrimRight
description: Returns a slice of a given string with all trailing characters contained in the cutset removed.
categories: [functions]
menu:
docs:
parent: functions
keywords: [strings]
signature: ["strings.TrimRight CUTSET STRING"]
relatedfuncs: [strings.TrimRight]
---
Given the string `"abba"`, trailing `"a"`'s can be removed a follows:
{{ strings.TrimRight "a" "abba" }} → "abb"
Numbers can be handled as well:
{{ strings.TrimRight 12 1221341221 }} → "122134"