TOP

Funzione VBA: StrReverse

YouLibreCalc for Excel logo

Descrizione

La funzione VBA STRREVERSE restituisce una stringa di caratteri dopo aver modificato l'ordine dei caratteri.


Sintassi STRREVERSE

StrReverse(valore)

Esempio VBA StrReverse

Cambia l'ordine dei simboli di valori diversi:

Sub StrReverseExample()

      MsgBox StrReverse("Excel")                'Resi: lecxE
      MsgBox StrReverse("www.moonexcel.com.ua") 'Resi: au.moc.lecxenoom.www
      MsgBox StrReverse(1234)                   'Resi: 4321
      MsgBox StrReverse("stats")                'Resi: stats
      MsgBox StrReverse(True)                   'Resi: eurT
    
End Sub