Reverse a string keeping the words in the string as it is.
E.G. "Quick Test Professional"
O/P "Professional Test Quick"
Answer / 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 |
Hi Friends, Can any one answer this question? 17) What method is used to retrieve the number of columns in the query results? A. Fields.Count B. Fields.Item(EOF) C. Fields.Count(BOF) D. Fields.Count.Value
How do you delete unwanted results in qtp?
What is the parameterization?
How does qtp identify objects in the application?
Test cases for Traffic Signals
How to display the first 3 letters in these "ABCDEFGH" using qtp script?
The xls contain data. how to get number of columns form the sheet?
Which object model ur used in ur project
What are the different types of checkpoints?
Does QTP work in UNIX environment
5 Answers BirlaSoft, C1 India,
write a test script in QTP to test the text that written in an image(i.e jpg)of a web page???
How do u override the meaning of a standard object in QTP?