ASP.NET利用正则表达式提取字符串中的数字

一言不足以毕之,请LOOK代码:

 

            string text = " 订单5|本次付款:4783|本单结清,";
            
string pat = @"(\d+)";
            Regex r 
= new Regex(pat, RegexOptions.IgnoreCase);
            Match m 
= r.Match(text);
            
int matchCount = 0;
            
while (m.Success)
            {
                
++matchCount;
                Group g 
= m.Groups[1];
                Response.Write(
"Match" + matchCount +""+ g + "<br />");

                m 
= m.NextMatch();
            }
posted @ 2009-05-14 15:47  牛腩  阅读(668)  评论(0编辑  收藏  举报