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 smart identification?
How to create runtime property for an object?
where the object repository is located?how to choose the object repository as shared or action object repositories?
Can you tell me any books or websites to learn VB Script for QTP ??
Which Databases supports for QTP?
Hello everybody, can we maintain the state of page in QTP? 1. suppose i opened a notepad text file i entered some text and changed the font type and font size and saved that file. 2. Now next time when i will open a new notepad file it is showing me that font type and size which i changed in my previous step. 3. Here i want that QTP should capture the default setting i.e. it should maintain the state of the page. Thanks in advance, Gaytri
What is the entry criteria and exit criteria for your test automation
recording is not a good programming practice.How to write effective script without recording.Which is the correct method explain in detail
CAN I CALL A FUNCTION IN ACTION.IF YES PLEASE HELP ME
What is CMMP and CMMH?
who is developed QTP ? is it from Mecury or HP
How can we disable popup blocker?