mirror of https://github.com/gohugoio/hugo
17 lines
367 B
Markdown
17 lines
367 B
Markdown
---
|
|
title: strings.Trim
|
|
description: Returns the given string, removing leading and trailing characters specified in the cutset.
|
|
categories: []
|
|
keywords: []
|
|
params:
|
|
functions_and_methods:
|
|
aliases: [trim]
|
|
returnType: string
|
|
signatures: [strings.Trim INPUT CUTSET]
|
|
aliases: [/functions/trim]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ trim "++foo--" "+-" }} → foo
|
|
```
|