VBA STRREVERSE 関数は、文字の順序を変更した後の文字列を返します。
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