how can we reverse the string without using the revese of
String function in QTP?

Answers were Sorted based on User's Feedback



how can we reverse the string without using the revese of String function in QTP?..

Answer / pillae

Str = "Reverse"
Cnt = Len(Str)
RStr = ""
For i = 1 to Cnt
RStr = Mid(Str,i,1) & RStr
Next
Msgbox RStr

Is This Answer Correct ?    50 Yes 4 No

how can we reverse the string without using the revese of String function in QTP?..

Answer / ramana vanteru

str="ramana"
revstr=strreverse(str)
msgbox revstr

O/P will be: anamar

Is This Answer Correct ?    20 Yes 14 No

how can we reverse the string without using the revese of String function in QTP?..

Answer / digi

IPString="buddy"
Dim StrTemp

StrLen=len(IPString)
For i=0 to len(IPString)-1
StrEachChr=mid(IPString,StrLen-i,1)
StrTemp=StrTemp & StrEachChr
Next

msgbox StrTemp

Is This Answer Correct ?    4 Yes 3 No

how can we reverse the string without using the revese of String function in QTP?..

Answer / mahesh

Dim str,newstr,strrevers
str="QTP"
Set newreg=new regexp
newreg.global="True"
newreg.ignorecase="True"
newreg.pattern=".{1}"
Set newstr=newreg.execute(str)

Dim strarray()
For i=0 to newstr.count-1
ReDim preserve strarray(i)
strarray(i)=newstr.item(i)
Next
For i=0 to ubound(strarray)
strrevers=strarray(i)&strrevers
Next
print strrevers

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More Automation Testing AllOther Interview Questions

Tell us the difference between assert and verify commands?

0 Answers  


Tell me what are pros and cons of automating tests at ui layer?

0 Answers  


how can i count the no of edit field in a page and fill the multiple edit field

0 Answers   Toshiba,


How do you Test Credit Card Validation

2 Answers   V2 Solutions,


I have a web page.In that i have two links called "gmail" and "gmail". Both links are look same.One link is at top of the page and other link is at bottomn of the page. How the automation tool can be recognized these link and make to click the link i want?

5 Answers  






2. How you will collect a module from the version?

0 Answers   Eka Software,


How many test cases have you automated per day?

0 Answers  


How is Jmeter tool very useful in projects when it does not have features like online monitoring,WAN emulation,caching like other performance tools.

0 Answers  


What is a framework and what are the frameworks available in rc?

0 Answers  


what are the Extension files in QTP?

3 Answers  


What are the different types of scripting techniques for automation testing?

0 Answers  


you have same applications (same server configaration)A&B you are doing nonfunctionality testing . what they differ in?

0 Answers  


Categories