how to reverse the string without using bultin functions(i.e
mean mid,len ,reverse functions)
Answer Posted / kishan
'how to reverse the string without using bultin
functions(i.e mean mid,len ,reverse functions)
option Explicit
Dim Str, Reverse, i
Str = "India"
Reverse = ""
msgbox len(Str) 'returns 5
for i=len(Str) to 1 step -1
Reverse=Reverse&mid(Str,i,1)
next
msgbox Reverse
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Where we use data driver in qtp?
Hi I have exp in manual testing and planning to move in automation testing qtp(9.2).So can help me how to automate customer relationship management tool using qtp and vb script this tool already developed so how can I test it whatever maintaining by development team like documents,various options just give the whole life cycle thanks in advance
What is reusable action?
Hi friends I need to know about jubula automation tool. Is anybody know in bangalore where jubula tanning class is going on do let me know. Its urgent for me to learn that tool please help.
How to Test the mainframe application?
how to write the descriptive programming in QTP for remove the object value and substitute, with a variable then call the validation from excel
What are the benefits of qtp?
What is the XML file architecture ?
How to add object to object repository in qtp9.0 Suppose for brower yahoo home page
I am in .Net development for past 3.5 years and want to enter in to automated testing and learn QTP. For this I need some good tutorial for beginners. I will be really greatful if any one has and they can send it to me on this address- ruchidureja@gmail.com
What are the Test design techniques you uses in ur project?
What are main panes available in qtp test browser?
In qtp, how you can remove the spaces from string?
What is the descriptive programming?
Hi! Using Descriptive Programming How do we get Parent object for an object by writing script(DP). Say, i want to get a parent object for a "Link" in a web page by writing script in Descriptive Programming.