LibreOfficeDev 7.4 Help
HnA2J‖Returns the string with the character order reversed.
VwDxG‖StrReverse (Text1 As String)
String
tqBLz‖ Text1: The string expression that you want to reverse the character order.
Sub ExampleReverse
Print StrReverse("ABCdefGH") ' return "HGfedCBA"
End Sub