Match words that contain two consecutive identical characters : Regex Match : Regular Expression C# Examples


C# Examples » Regular Expression » Regex Match »

 

Match words that contain two consecutive identical characters









    
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  ="Missisipli  Kerrisdale  she";
        
        Console.WriteLine("Matching  words  that  that  contain  two  consecutive  identical  characters");
        DisplayMatches(text,  @"\S*(.)\1\S*");
    }
}
    
   
  
   



Output

Matching words that that contain two consecutive identical characters
using the following regular expression: \S*(.)\1\S*
Missisipli
Kerrisdale


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Regular Expression
» Regex Match