write a script to extract LIKE word from the sentence I
LIKE Flowers

Answer Posted / vikash mishra

dim x,y,z
x= "I LIKE Flower"
y = mid(x,3,4)
msgbox y
it will give the LIKE you as a out put
another way

x = "I LIKE Flower"
y = split(x,"")
for i= 0 to ubound(y)
msgbox y(i)
next
it will give I,LIKE,Flower
so,these are the way ....

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain validation?

715


What is quality management?

737


Explain smoke testing?

580


Mention what are the categories of defects?

595


what is the difference between the normal testing and embedded testing?

631






What is a database administrator?

594


Explain exhaustive testing?

639


what is the difference between software testing and quality testing? how do they vary,waht is the process of testing in both software and quality?

1792


Explain end-to-end testing?

607


What is your daily routine in your office?

2218


What is syntax?

618


Explain walk-through?

590


What is pdr - peer design review?

624


What is a utility?

692


Explain monkey testing?

550