programming-examples/c-sharp/Strings/C# Sharp to search the position of a substring within a string.cs

22 lines
786 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
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);
}
}