write string reverse prog using vb script with out using
string reverse statement();
Answers were Sorted based on User's Feedback
Answer / uday
str="uday"
msgbox strreverse(str) 'just for info sake.
'this is the script
For i=len(str) to 1 step -1
resultchar=mid(str,i,1)
result=result+resultchar
Next
msgbox result
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / ankarao
str="Ankarao"
l=len(str)
for i=n to 1 step-1
res=mid(str,i,1)
rev=rev+res
next
msgbox rev
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jagadish
str = "jagguvamsee"
n=len(str)
for i = 1 to n
a = mid(str,i.1)&a
msgbox a
next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / lak
str ="Lakshmi"
For i=1 to len(str)
strrev = mid(str,i,1)&strrev
Next
msgbox strrev
| Is This Answer Correct ? | 0 Yes | 0 No |
What type of framework you are using in your company and explain it?
What is keyword driven framework?
Can any body please tell me the steps of keyword driven framework of QTP.
How to open any application during Scripting?
How to connect to the Database from QTP?
10 Answers DB, Thatavarti Technologies, Xchanging,
While spliting an action in QTP 10.0 getting an error : "This Line is a part of Script Block.You cannot split the action on this line." how to re-solve this and split the script into actions?
What is keyword driven testing..what is the use of this in Automated testing
Suppose u run ur script today and it is working fine ,nobody has changed the setting and all.u r the owner for the script. But when tomorrow I ran the same script again it got failed and It didn't able to identify one object. Can you tell me what would be the reason for this
Hi Friends,will any body tell to Me for which Auomation Tool their is great Requirement inht eMarket Eithr the QTP or WINRUNNER and for what reason and how long it is going to remain and wat the Scope for the automation Testing In the Future Please tll to Me In Details Ok .
Can we check environment variable value without existing of environment variable
What is the another extention name of library file.If that is exist than what's the differnce between them.
Define object spy ?