open-nomad/website/content/docs/job-specification/hcl2/functions/string/trim.mdx

27 lines
768 B
Plaintext

---
layout: docs
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/job-specification/hcl2/functions/string/trimprefix) removes a word from the start of a string.
- [`trimsuffix`](/docs/job-specification/hcl2/functions/string/trimsuffix) removes a word from the end of a string.
- [`trimspace`](/docs/job-specification/hcl2/functions/string/trimspace) removes all types of whitespace from
both the start and the end of a string.