Find the sting in the stringer array

The followin code is used to find the given string
in the string array



string[] DataArray = {"Kumar", "Shunmuganathan"};
string FindString = "nathan";

int strNumber;
int strIndex = 0;

for (strNumber = 0; strNumber < DataArray.Length; strNumber++)
{
strIndex = DataArray[strNumber].IndexOf(FindString);
if (strIndex >= 0)
break;
}
Console.WriteLine("String number: {0}\nString index: {1}",
strNumber, strIndex);





By
Nathan


Comments

No responses found. Be the first to comment...


  • Do not include your name, "with regards" etc in the comment. Write detailed comment, relevant to the topic.
  • No HTML formatting and links to other web sites are allowed.
  • This is a strictly moderated site. Absolutely no spam allowed.
  • Name:
    Email: