摘要: #region 取出被正则表达式匹配的值 //string str = "100,101"; //MatchCollection matches = Regex.Matches(str, @"(\d+)"); //string abc = ""; //foreach (Group match in matches) //{ // abc += match + ","; //} //Response.Write(ab... 阅读全文
posted @ 2012-09-27 08:53 iisp 阅读(409) 评论(0) 推荐(0)