StrReverse Function [VBA]

Returns the string with the character order reversed.

Warning Icon

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


தொடரமைப்பு:

StrReverse (Text1 As String)

திரும்பும் மதிப்பு:

String

அளவுருக்கள்:

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

பிழையான குறியீடுகள்:

5 செல்லாத செயல்முறை அழைப்பு

எடுத்துக்காட்டு:

Sub ExampleReverse

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

End Sub