I have a string "Redfort is in Delhi" how do u write
vbscript for " Delhi in is Redfort"
Answers were Sorted based on User's Feedback
Answer / dhakshna
str= "Redfort is in Delhi"
arr= split(str," ")
For i =ubound(arr) to lbound(arr) step -1
res = res&" " &arr(i)
Next
msgbox res
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / litan
x="Redfort is in Delhi"
a=split(x," ")
msgbox a(3)&" "&a(2)&" "&a(1)&" "&a(0)
just check it out..
its workin properly
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / ashish wadhwa
A="Redfort is in Delhi"
b=Split(A, " ")
For i=0 to UBound(b)
result=result&" "&b(UBound(b)-i)
result=Trim(result)
Next
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ashish wadhwa
A="Redfort is in Delhi"
b=Split(A, " ")
For i=0 to UBound(b)
result=result&" "&b(UBound(b)-i)
Next
result=Trim(result)
Try this it will work
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between Datadriven and Parameterization?
How many add-ins comes by default with quicktest professional?
Hi all, i have installed QTP8.2 in my system. but script is not generating while recording. What is the problem? is any file missing? pls let me know anybody...Thnaks
Does QTP support Java Script also. Which is one is preferrable for QTP, VB script or Java script
How u call functions in QTP
in QTP we test web based application at that time what script is run? is support vb script? plz tell me
where did you automate in your project?(please tell me example senarios)
what is the another name for blackbox testing?
Hi any body can tell me the synchranization point syntax thanks in advance
What is runtime objects and test objects? What is the difference between them?
Hi, can explain the draw back of manual testing.plz send me the answer to my mail id deepthip1985@gmail.com
How to Set the Global Sync Timeouts in QTP?