Files
nomad/website/content/docs/job-specification/hcl2/functions/string/strrev.mdx
Ashlee M Boyer 3444ece549 docs: Migrate link formats (#15779)
* Adding check-legacy-links-format workflow

* Adding test-link-rewrites workflow

* chore: updates link checker workflow hash

* Migrating links to new format

Co-authored-by: Kendall Strautman <kendallstrautman@gmail.com>
2023-01-25 09:31:14 -08:00

28 lines
629 B
Plaintext

---
layout: docs
page_title: strrev - Functions - Configuration Language
description: The strrev function reverses a string.
---
# `strrev` Function
`strrev` reverses the characters in a string.
Note that the characters are treated as _Unicode characters_ (in technical terms, Unicode [grapheme cluster boundaries](https://unicode.org/reports/tr29/#Grapheme_Cluster_Boundaries) are respected).
```hcl
strrev(string)
```
## Examples
```shell-session
> strrev("hello")
olleh
> strrev("a ☃")
☃ a
```
## Related Functions
- [`reverse`](/nomad/docs/job-specification/hcl2/functions/collection/reverse) reverses a sequence.