StrReverse Function
Main Menu
Description
Returns a string in which the character order of a specified string is reversed.

Syntax

StrReverse(string1)

Remarks
The following example uses the StrReverse function to return a string in reverse order:

Dim MyStr
MyStr = StrReverse("VBScript") ' MyStr contains "tpircSBV".


Main Menu