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 |
What is text check point and text area check point?
How do u insert an object during runtime in qtp?
I have a string "Redfort is in Delhi" how do u write vbscript for " Delhi in is Redfort"
What is Performance testing?
What is the latest version in QTP?
55 Answers Bharti, Polaris, US Technology,
How many types of run modes are there in qtp?
How to face prjoect manager round what type of questions they will Ask ? (Chandana)
1 Answers Call Centre, Convergys, IBM,
What is the qtp testing process?
Problem with XML checkpoint in QTP ?
hi Action 1 and action2 if we save it in C:, what folders will be created explain plz
I have a list box which contains duplicate values e.g. A,A,A,B,B,B,C,C,C.Now write a code in qtp to test the list box . Scenario #1 : I have to check whether any values are there? Scenario #2 : If duplicate values are there,then how many time it is getting duplicated? Svenario #3 : how can I test presence of items in list box ommiting duplicate values?
How smart identification works in qtp ?