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/trimspace.mdx

30 lines
689 B

---
layout: docs
page_title: trimspace - Functions - Configuration Language
sidebar_title: trimspace
description: |-
The trimspace function removes space characters from the start and end of
a given string.
---
# `trimspace` Function
`trimspace` removes any space characters from the start and end of the given
string.
This function follows the Unicode definition of "space", which includes
regular spaces, tabs, newline characters, and various other space-like
characters.
## Examples
```shell-session
> trimspace(" hello\n\n")
hello
```
## Related Functions
- [`chomp`](/docs/from-1.5/functions/string/chomp) removes just line ending characters from the _end_ of
a string.