Description
The StrReverse() function reverses a string.
This function has the form:
StrReverse(string)
Parameter | Description |
---|---|
string | (required) The string to be reversed |
Examples
The following example shows the basic use of this function:
Dim txt
txt = "This is a beautiful day!"
Msgbox(StrReverse(txt))
This produces the following result:
!yad lufituaeb a si sihT
Miscellaneous Information
Supported in Version: | 2.0 |
---|