packer-cn/website/pages/docs/from-1.5/functions/string/trim.mdx

28 lines
746 B
Plaintext

---
layout: docs
page_title: trim - Functions - Configuration Language
sidebar_title: trim
description: |-
The trim function removes the specified characters from the start and end of
a given string.
---
# `trim` Function
`trim` removes the specified characters from the start and end of the given
string.
## Examples
```shell-session
> trim("?!hello?!", "!?")
hello
```
## Related Functions
- [`trimprefix`](/docs/from-1.5/functions/string/trimprefix) removes a word from the start of a string.
- [`trimsuffix`](/docs/from-1.5/functions/string/trimsuffix) removes a word from the end of a string.
- [`trimspace`](/docs/from-1.5/functions/string/trimspace) removes all types of whitespace from
both the start and the end of a string.