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...

Write the InStr function. Write the test cases for this
function?

Answer Posted / echo

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace InStr
{
class Program
{
static void Main(string[] args)
{
//test case 1, should return -1
string txt = "this is a test";
string searchString = "ae";
Console.WriteLine(InStr(txt, searchString));


//cast case 2, should return 2
txt = "this is a test";
searchString = "is";
Console.WriteLine(InStr(txt, searchString));

Console.Read();
}

//return the position of the first occurrence of one
string "searchString" within another "txt"
//return -1 means cannot find
static int InStr(string txt, string searchString)
{
return txt.IndexOf(searchString);
}
}
}

Is This Answer Correct ?    3 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a function that inserts an integer into a linked list in ascending order. Write the test cases for this function.

5514


Explain dll hell?

1132


how to tell project details in interview the project is funds flow analysis?

1618


When you come in to the office, how do you know what you have to do during the day?

2332


Write the instr function.

1153


Test the save dialog in Notepad?

4741


What is the project management structure in your project? Is a PL assigned to the project?

2470


How did you choose the appropriate lifecycle for your project?

3317


Tell about yourself and job ?

2519


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?

2439


Did you used crystal reports? Do you have sufficient knowledge on crystal reports?

2532


How do you rate yourself in c#,vb.net,Asp.net,oracle,sql server ?

5399


Tell about current project ?

2690


What is the role of CLR in ASP.NET?

3686


Please, i am a final year student in nigeria and i have a project on pension fund administration and i need help in starting.

2286