StrReverse Function

Syntax:

StrReverse[$](S)

Group:

String

Description: Returns the string with the characters in reverse order.

Parameters:

Parameter

Description

S

Return this string with the characters in reverse order.

Example:

Sub Main
  Debug.Print StrReverse$("ABC") 'CBA
End
Sub