mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-21 21:35:28 +02:00
Merge commit '9b0050e9aabe4be65c78ccf292a348f309d50ccd' as 'docs'
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
This commit is contained in:
23
docs/content/en/functions/strings/TrimSuffix.md
Normal file
23
docs/content/en/functions/strings/TrimSuffix.md
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
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
|
||||
```
|
Reference in New Issue
Block a user