TOP

Função VBA: StrReverse

Descrição

A função VBA STRREVERSE retorna uma sequência de caracteres após alterar a ordem dos caracteres.


Sintaxe STRREVERSE

StrReverse(valor)

Exemplo VBA StrReverse

Altere a ordem dos símbolos de valores diferentes:

Sub StrReverseExample()

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