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

513 B

title description categories menu keywords signature relatedfuncs
strings.TrimRight Returns a slice of a given string with all trailing characters contained in the cutset removed.
functions
docs
parent
functions
strings
strings.TrimRight CUTSET STRING
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"