摘要: using System.Text.RegularExpressions;/// /// 执行正则提取出值 /// /// 正则表达式 /// HtmlCode源代码 /// 数组 public static string[] GetRegValueAarry(string RegexString, string HtmlCode) { string[] MatchVale = new String[30];//初始化数组 int i = 0; Regex r = new Regex(RegexString); for (Match m = r.Match(HtmlCode); m.Suc.. 阅读全文