Answer Posted / 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 |
Post New Answer View All Answers
Explain the support of asp for vb script functionality?
Explain about the asc function?
I am working on QTP, got struck in one place.. In my application depending upon configuration WebEdit count is increasing/ decreasing.. how to get these webedits..
What is the event handling in vbscript?
What are the special sub-types in vbscript?
Explain the string concatenation function in vbscript?
Write a test case using Test if the images,a particular test exists,check if the page links match,page response is within a certain range,parameterization of the test,the test should comprise of actions,the test should use a custom function,the test should use global repository
What is the purpose of on error resume next statement?
What is the main difference between function and sub-procedure?
Explain How do you create a recordset object in vbscript?
Explain about operator precedence in vb script?
What is vbscript procedures?
How are comments handled in the vbscript language?
Which function allows you to instantiate an object given its programmatic identifier or progid?
What is byref and byval parameters in vbscript?