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
What is depth testing?
Mention what the purpose behind doing end-to-end testing is?
Share 2 high complexity and 2 low complexity test cases for a coke vending (ATM) machine.
What is the key difference between preventative and reactive approaches to testing?
What is parameter?
In which phase should testing begin – requirements, planning, design, or coding?
How u r managing the time constraints in completing the project?
What is gorilla testing?
I need to learn everything I can about the different types of Test Activities (i.e., Test Strategy, Test Plan, Test Cases, etc.). What is the best online resource?
What is structural testing?
Which activity in the fundamental test process includes evaluation of the testability of the requirements and system?
What is test environment?
What is the smallest unit of information transfer in FC?
Can you test a program and find 100% of the errors?
what is enhancement Testing and how to perform enhancement Testing of any website