how to get the particular chr in an array list the question
is ....i have an array like this
ABCD
EBCF
GBCH
IBCJ
HERE I NET TO GET ONLY "BC" FROM ALL HOW TO GET IT
HELP ME ANY ONE
THANKS
Answer Posted / pushkar1206
This will print BC 4 times.
a="ABCD EBCF GBCH IBCJ"
b=Split(a," ")
For i=0 to ubound(b)
msgbox mid(b(i),2,2)
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
I am having major problems with some DB Table Checkpoints I add to my script. I 35 web based applications recorded and each has DB Table Checkpoints insert but only 1 script isn't recognizing the DB Table Checkpoints for some reason. I've checked the DB connections and the info in the Library Functions and still only this one script out of 35 doesn't recognize the DB Table Checkpoints. Can someone please help me figure out why only this one script out of 35 that's hitting the same database is having a problem.
when will you do debug your script? and explain that process?
i am looking job in perfomance testing using Loadrunner any one help me a project plz......?(Chandana) chs_29@rediffmail.com
An action has both shared and local OR associated with it and both have the same object in them. In the test which one will be considered?
what is meant by Implicit and explicit requirements?
Without using gui map editor we can recognize the application in winrunner ?
How to execute a winrunner script in quicktest professional (qtp)?
We stored into the objects OR and then write the scripting
Hi am New to Automation Testing , any one can you help me what are the basic questiion are asked an interview?
1. wat are the main diff b/w QTP 8.0 AND QTP 9.2 ( not user interface) 2. wat is the meaning of Keyword in keyword driven frame work? 3. how u will handle the unknown errors while exucution. (not recovery scenario)
1--How many functions u develop 2--What is an array 3-- where is ur server 4--U involved in unit testing 5--how ur test the background colour using QTP
How to add synchronisation points in qtp?
What are the differences between qtp and winrunner?
What are the benefits of quick test pro(qtp)?
There are 10 rows in the datatable. How can we fetch 2 rows and then skip 3rd row. After that, pick 4th & 5th row and skip 6th row. Please share code