You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
786 B
C#

using System;
public class Exercise17
{
public static void Main()
{
string str1;
string findstr;
Console.Write("\n\nSearch the position of a substing within a string :\n");
Console.Write("-------------------------------------------------------\n");
Console.Write("Input a String: ");
str1 = Console.ReadLine();
Console.Write("Input a substring to be found in the string: ");
findstr = Console.ReadLine();
int index = str1.IndexOf(findstr);
if(index<0)
Console.WriteLine("The substring no found in the given string \n");
else
Console.WriteLine("Found '{0}' in '{1}' at position {2}",
findstr, str1, index);
}
}