摘要: MatchCollection mc = Regex.Matches("id=5||name=text||item=0||selected=true", @"\w+=(?<value>[^\||]*)"); foreach (Match m in mc) { GroupCollection gc = m.Groups; switch (i) { ... 阅读全文
posted @ 2012-04-19 14:24 小川丶 阅读(254) 评论(0) 推荐(0) 编辑