StrReverse$ Function
Syntax StrReverse[$](S)
Group String
Description Return the string with the characters in reverse order.
Parameter Description
S Return this string with the characters in reverse order.
Example
'#Language
"WWB-COM"
Sub Main
Debug.Print StrReverse$("ABC") 'CBA
EndSub