StrReverse Function [Runtime - VBA] /text/sbasic/shared/03120412.xhp
StrReverse function StrReverse Function [Runtime - VBA] Returns the string with the character order reversed.
Syntax: StrReverse (Text1 As String) Return value: String Parameters: Text1: The string expression that you want to reverse the character order. Example: Sub ExampleReverse Print StrReverse("ABCdefGH") ' return "HGfedCBA" End Sub