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 checkpoints for quicktest professional (qtp)?
now a days which one is using all companies for qtpscript a)Object Repository based script b)Descriptive program based script c)BOTH
Friends please let me know how id following possible in QTP: Can I apply conditional loop on a bitmap/image or any other checkpoint. Like if checkpoint passes then if or Else
How to supress warnings from the "Test results page"?
How to create runtime property for an object?
QTP9.1 does not support to text checkpoint in Windows application? Is this correct? If this is correct, what is alternative for Text checkpoint?
hi Sudhananda reddy, in my resume, i written as , I Am working as a Test Engineer for xyz company. IS IT RIGHT OR WRONG? WHAT IS THE ACTUAL meaning of "IN XYZ COMPANY", "FOR XYZ COMPANY", "WITH XYZ COMPANY".
we have 5 default properties we want add more Default property in Object Repository how to add the property
1. What is extense of Result file in QTP?
In Remote acess server how u run a test?
Can anyone explain about Keyword driven framework in detail and how to use it in case of any project
what is the defference between calling ation and called action?