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 |
what is the use of Data base check point ?
write a text script to display * as below ********** **** **** *** *** ** ** * * * * ** ** *** *** **** **** **********
what is descriptive programming in QTP and what is environment variable in QTP? where we store and what is its use?
How to open excel in vb script?
How to map test cases with Automation script? Please explain in details.With example Thanks for your co-operation(In Advance)
Difference between Function and Sub routine?
What is the difference between for loop and while loop?
after medical test,when will be the police verification
how to add the shared repository file to the script file while running the script manuall
Why is the use of exit do or exit for statements within loops discouraged?
What are string functions in vbscript?
Explain the string concatenation function in vbscript?