Write the InStr function. Write the test cases for this
function?
Answer Posted / majhoul
int Instr(int start,string string1,string string2,string type-of-the-test)
{
lenght= string2.lenght();
int lenght ;
int i ;// as counter for lenght
if (string1==NULL ll string2==Null)// to check that the
both of the strings
is not empty
return 0;
if (type-of-the-test = "text")// it doesn't matter if it is upper or lower case in the text test !!!
{
string1=toupper(string1) ;
string2=toupper(string2) ;
}
int location = string1.find(string2);
while (location != string::npos)//
{
if (location > start) // the string was found we have to check if it is match the type the test
{
i=0 ;
while ( lenght > 0 )
{
if (string1[location+i]!= string2[i] )
break ;// return where the string was found
}
if ((lenght-1) == i)
return location ;
}
else
location = string1.find(string2,location+1)
}
return 0 ; // if the string wasn't find at all [p
}
' String to search in.
string SearchString = "XXpXXpXXPXXP"
string SearchChar = "P"
TestPos = InStr(4, SearchString, SearchChar,"Text")
' A binary comparison starting at position 1. Returns 9.
TestPos = InStr(1, SearchString, SearchChar,"binary")
//' If Option Compare is not set, or set to Binary, return //9.
//' If Option Compare is set to Text, returns 3.
//TestPos = InStr(SearchString, SearchChar)
//' Returns 0.
//TestPos = InStr(1, SearchString, "W")
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Test the save dialog in Notepad?
Please, i am a final year student in nigeria and i have a project on pension fund administration and i need help in starting.
Write a function that inserts an integer into a linked list in ascending order. Write the test cases for this function.
how to tell project details in interview the project is funds flow analysis?
Write the instr function.
Explain the various activities you do (as a PL) when the project is started up.
What and where are the policy statements for software project planning?
How do you create the Software Project Management Plan (SPMP)?
create a flow diagram up to 2 levels for hospital management
What is the project management structure in your project? Is a PL assigned to the project?
How would you deal with a bug that no one wants to fix? Both the SDE and his lead have said they won?t fix it?
funds flows analysis how to prepare for interview
Given a MAKEFILE (yeah a makefile), design the data structure that a parser would create and then write code that iterates over that data structure executing commands if needed.
What is the role of CLR in ASP.NET?
How do you ensure that your project plan is available for others to see? Where will you find the plans of other projects executed (in the past or currently) in the center?