- string-reverseprocedure
Reverse the string.
string-reverse returns the result string and does not alter its s parameter.
(string-reverse "Able was I ere I saw elba.") => ".able was I ere I saw elbA" (string-reverse "Who stole the spoons?" 14 20) => "snoops"
Unicode note: Reversing a string simply reverses the sequence of code-points it contains. So a combining diacritic a coming after a base character b in string s would come out before b in the reversed result.