Reverse a string keeping the words in the string as it is.
E.G. "Quick Test Professional"
O/P "Professional Test Quick"
Answer Posted / gaurav sharma
Dim strVar
strVar = "Quick Test Professional"
strRevrs = ""
strSplit = Split(strVar," ")
For iLoop = Ubound(strSplit) To Lbound(strSplit) Step -1
strRevrs = strRevrs&" "&strSplit(iLoop)
Next
MsgBox strRevrs
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is the difference btn risks & Therads in the Test plan documentation?
What are the challenges u faced in testing with crm domain? How u overcome with?
Difference between action & Reusable action?
How does quicktest professional identifies the object in the application?
I have created 3 actions in test action1, action2, action3 but I want run action 1,action 3,action2 how can you change in the actions in keyword view?
What is quick test pro?
how to fetch the values from grid? & qtp recogniges that grid as a webelement? what u do?
how we implement share object repository in QTP 9.0 without using quality Centre , Explaine in brief
Why do you create a text checkpoint on a Web application? What is the purpose of the Close method?
Hi, how can we check or avoid the memory leakage in QTP9.2?
How you can write contexts to text file in qtp?
How do you configure QTP AND Test director?
after click on compose mail how can we attached a file in qtp with vbscript code
What do you mean by iteration?
Which functionalities of QTP used in banking project? pls any say answer?