opentofu/website/docs/language/functions/trimspace.mdx
Janos a15a6c9657
Versioned docs: replacing docs links with relative variants (#1537)
Signed-off-by: Janos <86970079+janosdebugs@users.noreply.github.com>
Signed-off-by: Damian Stasik <920747+damianstasik@users.noreply.github.com>
Signed-off-by: Roman Grinovski <roman.grinovski@gmail.com>
Co-authored-by: Damian Stasik <920747+damianstasik@users.noreply.github.com>
Co-authored-by: Roman Grinovski <roman.grinovski@gmail.com>
2024-04-24 13:24:30 +02:00

27 lines
601 B
Text

---
sidebar_label: 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
```
> trimspace(" hello\n\n")
hello
```
## Related Functions
* [`chomp`](../../language/functions/chomp.mdx) removes just line ending characters from the _end_ of
a string.