Programming Reference Manual
 
Syntax
 
StrReverse[$](S)
 
Description
Return the string with the characters in reverse order.
 
Parameter
Description
S 
Return this string with the characters in reverse order.
See Also
 
Example
 
Sub Main
Debug.Print StrReverse$("ABC") 'CBA
End Sub