Latest web development tutorials

VBScriptのStrReverse関数

VBScriptのリファレンス 完全なVBScriptのリファレンス

StrReverse関数は、文字列を逆にします。

文法

StrReverse(string)

参数 描述
string 必需。需被反转的字符串。

例1

Dim txt
txt="This is a beautiful day!"
document.write(StrReverse(txt))

Output:

!yad lufituaeb a si sihT


VBScriptのリファレンス 完全なVBScriptのリファレンス