LibreOffice 7.2 Help
Zwraca ciąg znaków (String) z odwróconą kolejnością znaków.
This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.
StrReverse (Tekst1 As String)
String
Text1: Wyrażenie tekstowe, które chcesz odwrócić kolejność znaków.
5 Nieprawidłowe wywołanie procedury
Sub ExampleReverse Print StrReverse("ABCdefGH") ' return "HGfedCBA" End Sub