write a vb script to display the reverse of vbs
Answers were Sorted based on User's Feedback
Answer / mudaseer
Option Explicit
Dim MyStr, char, NewStr, x, y
MyStr = "vbs"
y = Len(MyStr)
For x = y To 1 Step -1
char = Mid(MyStr,x,1)
NewStr = NewStr & char
Next
msgbox newstr
| Is This Answer Correct ? | 3 Yes | 1 No |
how to delete folder test3,test4 and test5 using vbscript?
give me an ex. of unoverloaded method?
How to remove the spaces in a string Ex: "this is apple"
What is the difference between vbscript and vba?
What is vbscript language used for and which earlier language is it modeled upon?
How to take whole text output from screen of Bitmap Application.
Which operator can be used to change the value of the operand or change the state of the condition?
How will you get the natural logarithm of the given number in vbscript?
What are keywords in the vbscript language?
What is the use of the instr function?
How can you create a file object to work with the files in the vbscript language?
What is the difference between ByRef and ByVal. When to use ByRef and ByVal