VBA/Excel/Access/Word/String Functions/StrReverse

Материал из VB Эксперт
Перейти к: навигация, поиск

StrRev reverses the order of text in a string:

 
Sub StrReverseExample()
    Debug.Print StrReverse("This string looks very funny when reversed!")
    "Returns !desrever nehw ynnuf yrev skool gnirts sihT
End Sub