chomp
endswith
format
formatlist
indent
join
lower
regex
regexall
replace
split
startswith
strcontains
strrev
substr
templatestring
title
trim
trimprefix
trimsuffix
trimspace
upper
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: