using System.Text.RegularExpressions;
public static void Main()
string regexPattern = @"hello";
Regex regex = new Regex(regexPattern);
string inputString = "hello world!";
Match match = regex.Match(inputString);
Console.WriteLine("Match found at index {0} with length {1}", match.Index, match.Length);
Console.WriteLine("No match found.");