采集

取得页面HTML代码的例子上面已经给出不少了  
  下面的代码是使用正则表达式取得HTML中内容的代码  
  Regex   regex1   =   new   Regex(this.NameKey,   RegexOptions.Singleline   |   RegexOptions.IgnoreCase   );  
  MatchCollection   collection1   =   regex1.Matches(this.ArtHtml);  
  if   (collection1.Count>0)  
  {  
  result=collection1[0].Result("${title}");  
posted on 2009-08-06 09:50  冷火  阅读(461)  评论(0编辑  收藏  举报