mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 13:00:32 -05:00
As of this commit, that layout doesn't exist yet, but I'm isolating the one-line changes to their own commit to try and keep your eyes from glazing over.
624 B
624 B
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| language | strrev - Functions - Configuration Language | docs-funcs-string-strrev | 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 are respected).
strrev(string)
Examples
> strrev("hello")
olleh
> strrev("a ☃")
☃ a
Related Functions
reversereverses a sequence.