How to use C# Regular Expression to get the match number list?

Posted by Mike108 on Stack Overflow See other posts from Stack Overflow or by Mike108
Published on 2010-03-23T07:33:53Z Indexed on 2010/03/23 7:43 UTC
Read the original article Hit count: 214

Filed under:
string inputText = "abc13500008888,   *a1c13688886666abc   mm13565685555**" ;

How to use C# Regular Expression to get the match number list?

The rule is that is a 11 continuous number and the first letter is 1.

The results should be:

13500008888
13688886666
13565685555

© Stack Overflow or respective owner

Related posts about c#