Dim MyStr, nCnt, i, RevStr
MyStr = inputbox("Enter the String:")
nCnt = Len(MyStr)
For i = 1 to nCnt
RevStr = Mid(MyStr,i,1)&RevStr
Next
Msgbox "Reversed String is: "&RevSt
Output
-----------
Enter the String: UFT
Reversed String is: TFU
MyStr = inputbox("Enter the String:")
nCnt = Len(MyStr)
For i = 1 to nCnt
RevStr = Mid(MyStr,i,1)&RevStr
Next
Msgbox "Reversed String is: "&RevSt
Output
-----------
Enter the String: UFT
Reversed String is: TFU
No comments:
Post a Comment
Note: only a member of this blog may post a comment.