Collabora Office 23.05 Hjälp
Returns the string with the character order reversed.
StrReverse (Text1 As String)
String
Text1: The string expression that you want to reverse the character order.
Sub ExampleReverse
Print StrReverse("ABCdefGH") ' return "HGfedCBA"
End Sub