You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/website/pages/docs/from-1.5/functions/string/trim.mdx

29 lines
713 B

---
layout: docs
page_title: trim - Functions - Configuration Language
sidebar_title: 'trim'
sidebar_current: configuration-functions-string-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
```
> trim("?!hello?!", "!?")
hello
```
## Related Functions
- [`trimprefix`](./trimprefix.html) removes a word from the start of a string.
- [`trimsuffix`](./trimsuffix.html) removes a word from the end of a string.
- [`trimspace`](./trimspace.html) removes all types of whitespace from
both the start and the end of a string.