Match index and value : Regex Match : Regular Expression C# Examples


C# Examples » Regular Expression » Regex Match »

 

Match index and value









    
using  System;
using  System.Text.RegularExpressions;

public  class  MainClass
{
        static  void  Main(  string[]  args  )  {
                //  Create  regex  to  search  for  IP  address  pattern.
                string  pattern  =  @"(?<part1>[01]?\d\d?|2[0-4]\d|25[0-5])\."  +
                                                  @"\k<part1>\."  +
                                                  @"\k<part1>\."  +
                                                  @"\k<part1>";
                Regex  regex  =  new  Regex(  pattern  );
                Match  match  =  regex.Match(  "192.168.169.1"  );
                while(  match.Success  )  {
                        Console.WriteLine(  "IP  Address  found  at  {0}  with  "  +
                                                              "value  of  {1}",
                                                              match.Index,
                                                              match.Value  );

                        match  =  match.NextMatch();
                }
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Regular Expression
» Regex Match