摘要:
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.. 阅读全文
posted @ 2014-02-26 16:56
蓝色传奇
阅读(1162)
评论(0)
推荐(0)
2014年2月26日