Match words that contain 'k' or 'f' : Regex Match : Regular Expression C# Examples


C# Examples » Regular Expression » Regex Match »

 

Match words that contain 'k' or 'f'









    
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  ="knife  knock  five";
        
        Console.WriteLine("Matching  words  that  contain  'k'  or  'f'");
        DisplayMatches(text,  @"\S*[kf]\S*");
    }
}
    
   
  
   



Output

Matching words that contain 'k' or 'f'
using the following regular expression: \S*[kf]\S*
knife
knock
five


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Regular Expression
» Regex Match