Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Answers were Sorted based on User's Feedback



how to get the particular chr in an array list the question is ....i have an array like this ABCD..

Answer / gabbar

a="ABCD EBCF GBCH IBCJ"
b=Split(a," ")
For i=LBound(b) to UBound(b)
msgbox "count: "&i&" "& mid(b(i),2,2)
Next

Is This Answer Correct ?    4 Yes 0 No

how to get the particular chr in an array list the question is ....i have an array like this ABCD..

Answer / koteswar

str = " ABCD EBCF GBCH IBCJ HERE I NET"
n = split(str, "BC")
cnt = ubound (n)
msgbox cnt

Is This Answer Correct ?    2 Yes 1 No

how to get the particular chr in an array list the question is ....i have an array like this ABCD..

Answer / snegha

ar2=Array("ABCD","EBCF","GBCH","IBCJ")


arlen=UBound(ar2)-lbound(ar2)+1 'Finding array length

For p= 0 to arlen-1
msgbox Mid(ar2(p),2,3)
Next

Is This Answer Correct ?    1 Yes 0 No

how to get the particular chr in an array list the question is ....i have an array like this ABCD..

Answer / dinesh1433

Dim AR2,i

AR2=Array("ABCD","EBCF","GBCH","IBCJ")

For i=0 to ubound(AR2)
If (Instr(AR2(i),"BC")<>0) Then
msgbox "BC found in Element :"&AR2(i)
End If

Next

Is This Answer Correct ?    2 Yes 1 No

how to get the particular chr in an array list the question is ....i have an array like this ABCD..

Answer / rajesh

hai.. Koteswar
i need to say thanks for your quick reply ..
but my question is how to get BC IN A ARRAY means i need to
display it.....,BUT YOU ANS THAT HOW MANY BC ARE THERE IN
THE ARRAY LIST .....IF POSSIBLE PLEASE GIVE A COMMANDS AGAIN...

Is This Answer Correct ?    0 Yes 0 No

how to get the particular chr in an array list the question is ....i have an array like this ABCD..

Answer / 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

More QTP Interview Questions

difference between GetRoProperry and GetToProperty.and where we've to use exactly those properties

5 Answers   Wipro,


what is the difference between data driver & data driven and driver script?

0 Answers  


How do we do DOM programming in QTP.Could you explain with an example. If possible please provide some material or link related to DOM Programming.

0 Answers  


I have to automate webpage. If I click one hyperlink2 it will take 2 hrs to open. How to automate hyperlink2?

4 Answers   Cap Gemini, Polaris,


How can I change object description or check point values in qtp?

0 Answers  


What is the difference betweent test and component?

1 Answers  


how to choose the framework in qtp ? 2)when we go for the descriptive programming ?

2 Answers   Syntel,


i have an external excel datasheet where it only contains 3 rows. after qtp executed the code to import the datasheet, the datatable getrowcount method now gives me a different value, lets say 60,000+ instead of only 3. i did not have any values starting from row 4 of my excel file. why is this happening? this also results to the qtp report to load for a very long time.

0 Answers  


What is the use of text output value in quicktest professional?

0 Answers  


how can we retrieve ten rows from the data table using loop concept?

3 Answers  


How To Export The Screen Shoots Along With The Test Reports In QTP Version 10? Thanks In Advance SenthilKumar

1 Answers  


give one example where you have used regular expression?

6 Answers   Ordain Solutions,


Categories