TOP

関数 VBA: StrReverse

説明

VBA STRREVERSE 関数は、文字の順序を変更した後の文字列を返します。


構文 STRREVERSE

StrReverse(値)

例 VBA StrReverse

異なる値のシンボルの順序を変更します。

Sub StrReverseExample()

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