<전체 VBScript를 참조
StrReverse 함수는 문자열을 반전시킵니다.
통사론
StrReverse(string)
매개 변수 | 기술 |
---|---|
string | 필요합니다. 문자열은 되돌릴 수 |
예 1
Dim txt
txt="This is a beautiful day!"
response.write(StrReverse(txt))
Output:
!yad lufituaeb a si sihT
<전체 VBScript를 참조