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/content/docs/templates/hcl_templates/functions/string/trim.mdx

26 lines
758 B

---
page_title: trim - Functions - Configuration Language
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/templates/hcl_templates/functions/string/trimprefix) removes a word from the start of a string.
- [`trimsuffix`](/docs/templates/hcl_templates/functions/string/trimsuffix) removes a word from the end of a string.
- [`trimspace`](/docs/templates/hcl_templates/functions/string/trimspace) removes all types of whitespace from
both the start and the end of a string.