chomp
format
formatlist
indent
join
lower
regex
regexall
replace
split
strrev
substr
title
trim
trimprefix
trimsuffix
trimspace
upper
You are viewing documentation for version v1.2.x. View latest version.
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)
> strrev("hello") olleh > strrev("a ☃") ☃ a
reverse
On this page: