mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
23 lines
626 B
Markdown
23 lines
626 B
Markdown
---
|
|
title: strings.TrimSuffix
|
|
description: Returns the given string, removing the suffix from the end of the string.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: []
|
|
related:
|
|
- functions/strings/Chomp
|
|
- functions/strings/Trim
|
|
- functions/strings/TrimLeft
|
|
- functions/strings/TrimPrefix
|
|
- functions/strings/TrimRight
|
|
returnType: string
|
|
signatures: [strings.TrimSuffix SUFFIX STRING]
|
|
aliases: [/functions/strings.trimsuffix]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ strings.TrimSuffix "a" "aabbaa" }} → aabba
|
|
{{ strings.TrimSuffix "aa" "aabbaa" }} → aabb
|
|
{{ strings.TrimSuffix "aaa" "aabbaa" }} → aabbaa
|
|
```
|