Nápověda LibreOffice 6.3
Vrátí řetězec s převráceným pořadím znaků.
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)
Řetězec
Text1: Řetězec, v němž chcete převrátit pořadí znaků.
5 Neplatné volání procedury
Sub ExampleReverse Print StrReverse("ABCdefGH") ' return "HGfedCBA" End Sub