Match words that start with 's' and end with 'e' : Regex Match : Regular Expression C# Examples


C# Examples » Regular Expression » Regex Match »

 

Match words that start with 's' and end with 'e'









    
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'  and  end  with  'e'");
        DisplayMatches(text,  @"\bs\S*e\b");
    }
}
    
   
  
   



Output

Matching words that start with 's' and end with 'e'
using the following regular expression: \bs\S*e\b
she


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Regular Expression
» Regex Match