Reverse a string keeping the words in the string as it is.
E.G. "Quick Test Professional"
O/P "Professional Test Quick"

Answer Posted / abbas

Var1="Quick Test Professional" 'Store String In One Variable

Arr=Split(Var1, " ") 'Split String By Space

For i=UBound(Arr) To 0 Step -1 'Run A Loop
Var2=Var2 &Arr(i) &Space(2)
Next

Msgbox Var2

Is This Answer Correct ?    12 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what QTP Options do you know?

2933


If you are testing a web application then what will you test in that application?

1548


How to remove the associated function library?

532


after initiating one project for testing, when exacltly QTP tester role starts?

1413


How to capture a window in QTP?

1532






Explain the concept of object repository?

540


Can we create a qtp test from qc?

595


What are the things(properties, and other details) will be recorded while recording an object using normal recording?

1499


How to modify the text checkpoint?

623


If we put all properties in mandatory and assistive list of Normal Identification, Do we still need Smart?

581


hi can anybody help with an qtp 9.2 license key please. Thanks, Nitesh.

1851


In application which areas to be automated and what kind of situation will be take? using QTP? Plz give me the clear answer

1947


How does you pass optional arguments in qtp?

567


Please help me by providing the License key for QTP 9.2, at guru_aarya@yahoo.co.in Best Regards Gururaj.B

2918


Hi All, we are using QTP Automation Scripts to test SAP. I recorded QTP Automation Scripts in English-based SAP GUI. Now we have to test a French-based SAP sytem and use the same scripts. The QTP scripts are failing when executed on the French-based SAP System due to Object Recognition Issues. What can we do? Do I re-record the scripts in the French-based SAP system?

2329