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 |
Will QTP Support Visual Foxpro Applications? If yes please tell me whether I need to install any additional addins for that?
Which statement will use for close an action in QTP?
does the vb script knowledge is mandatery in testing using QTP
describe common problems of test automation?
Pls anyone, tell me the script in QTP to find the number of links, and images in a webpage. Verry very urgent. I shall really be very thankful
Few basic questions on commonly used Excel VBA functions.
QTP -object reposistory spy tool is not able to spy the pop up message appearing in the application, so how is that i can handle such run time pop ups in QTP by code???
Do you know how to connect database? Can you tell me the procedures?
In an interview what r the questions asked in qtp related project? pls any answer this question?
I have to automate webpage. If I click one hyperlink2 it will take 2 hrs to open. How to automate hyperlink2?
4 Answers Cap Gemini, Polaris,
Difference between object identification and smart identification
Can we write class for vb script in Quick Test Professional?