mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-21 10:47:34 -05:00
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>
28 lines
601 B
Plaintext
28 lines
601 B
Plaintext
---
|
|
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.
|