new Regex(^\d+$\n+, RegexOptions.Multiline) : Regular Expression : Regular Expression C# Examples


C# Examples » Regular Expression » Regular Expression »

 

new Regex(^\d+$\n+, RegexOptions.Multiline)









    
using  System;
using  System.Collections.Generic;
using  System.Globalization;
using  System.Text;
using  System.Text.RegularExpressions;
using  System.Reflection;

public  class  MainClass{

      public  static  void  Main(){
                Regex  r  =  new  Regex(@"(^\d+$\n)+",  RegexOptions.Multiline);
                Console.WriteLine(r.Match("987987\n129821").Value);
      }
}
    
   
  
   



Output

987987


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Regular Expression
» Regular Expression