2020-12-14 18:20:03 -05:00

26 lines
745 B
Plaintext

---
page_title: trimsuffix - Functions - Configuration Language
sidebar_title: trimsuffix
description: |-
The trimsuffix function removes the specified suffix from the end of a
given string.
---
# `trimsuffix` Function
`trimsuffix` removes the specified suffix from the end of the given string.
## Examples
```shell-session
> trimsuffix("helloworld", "world")
hello
```
## Related Functions
- [`trim`](/docs/from-1.5/functions/string/trim) removes characters at the start and end of a string.
- [`trimprefix`](/docs/from-1.5/functions/string/trimprefix) removes a word from the start 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.