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

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

i need code for how to click on particular mail in utlook mail box .its urjent Thank You Balaji

1568


In qtp, how you can remove the spaces from string?

538


Hi Friends... By using QTP , can we test .net products...and that product supports different languages.. thanx in advance..

4123


please any one can explain the keyword driven framework. with gmail example.

1615


How to find the name of the machine where you are running your automation scripts in qtp?

515






Explain the check points in quicktest professional (qtp)?

550


Explain the keyword driven framework for the window based application complete creation of library files,env file,test data,recovery file,excel file ,repository etc and as a test engineer how is ur approach

1598


What is QTP’s model for test creation?

668


how could i download qtp in which i get add-in support for 'oracle' is there any way to get it? i finding but not getting pls help me out :)

1421


Where is the Bitmap checkpoint information stored?

1753


1--How many functions u develop 2--What is an array 3-- where is ur server 4--U involved in unit testing 5--how ur test the background colour using QTP

1536


whenever U using QTP,Test Director, Why we using separate Bug tracking tool?

1558


A FORM CONTAINS 5 FIELDS. 1 FIELD IS ENABLED REMAINING(4) FIELDS DISABLED. MY QUESTION IS ENTER VALUES INTO 1 FIELD AFTER THAT CLICK TAB BUTTON THEN 2 FIELD ENABLE THIS PROCESS CONTINUE UPTO 5TH FIELD. HOW TO WRITE CODE IN DESCRIPTIVE PROGRAMMING. PLZ TELL ME THE PROCEDURE AND CODE FOR IT.

1268


How QTP support all types of applications (platforms)?

4071


what is the difference between data driver & data driven and driver script?

2132