StrReverse Function [VBA]

Returns the string with the character order reversed.

αžšαžΌαž”β€‹αžαŸ†αžŽαžΆαž„β€‹αž–αŸ’αžšαž˜αžΆαž“

This function or constant is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


Syntax:

StrReverse (Text1 As String)

Return value:

String

Parameters:

Text1: The string expression that you want to reverse the character order.

Error codes:

5 αž€αžΆαžšβ€‹αž αŸ…β€‹αž”αŸ‚αž”αž”αž‘β€‹αž˜αž·αž“β€‹αžαŸ’αžšαžΉαž˜αžαŸ’αžšαžΌαžœ

Example:

Sub ExampleReverse

 Print StrReverse("ABCdefGH") ' return "HGfedCBA"

End Sub