Regular Expression C# Tutorial

using System;
using System.Text.RegularExpressions;
class MainClass {
  private static void DisplayMatches(string text,string regularExpressionString) {
    Console.WriteLine("using the following regular expression: " +regularExpressionString);
    MatchCollection myMatchCollection = Regex.Matches(text, regularExpressionString);
    foreach (Match myMatch in myMatchCollection) {
      Console.WriteLine(myMatch);
    }
  }
  public static void Main() {
    string text ="end main void static start she";
    
    Console.WriteLine("Matching words that start with 's'");
    DisplayMatches(text, @"\bs\S*");
  }
}
Matching words that start with 's'
using the following regular expression: \bs\S*
static
start
she