html内容如下 
----------------------------------------------------------------- 
<table cellspacing=0 cellpadding=2>
<tr><td align=middle>
<table cellspacing=0 cellpadding=2 align=right><tr><td align=center><a class=r href="http://mil.news.sina.com.cn/p/2008-07-05/0926508862.html " target=_blank  rel="&a=4"><img  src="/ni?u=http://i0.sinaimg.cn/jc/p/2008-07-05/U1335P27T1D508862F3DT20080705092600.jpg " border=1></a></td></tr></table>
</td>
<td class="zh" width=100%><a href="http://mil.news.sina.com.cn/p/2008-07-05/0926508862.html "  rel="&a=5&pn=4" target=_blank><font style=font-size:14px><b>图文:“保钓联盟”15日前往<font color="#C60A00">钓鱼岛</font>“宣示主权”</b></font></a> <font color=#6f6f6f> <nobr>新浪 2008-7-5 09:26</nobr></font><br><font size=-1>“保钓联盟”15日晚间出海前往<font color="#C60A00">钓鱼岛</font>“宣示主权”。海巡伟星舰16日在<font color="#C60A00">钓鱼岛</font>海域戒护保钓船,日方出动多架直升机侦察。(图片来源:台湾“中央社”) </font>    </td></tr></table><br>
----------------------------------------------------------------- 
<table cellspacing=0 cellpadding=2>
<tr>
<td class="zh" width=100%><a href="http://ent.sina.com.cn/v/m/2008-07-05/02042088437.shtml "  rel="&a=5&pn=5" target=_blank><font style=font-size:14px><b>京华时报:《旗舰》因世俗而真实</b></font></a> <font color=#6f6f6f> <nobr>新浪 2008-7-5 02:04</nobr></font><br><font size=-1>这是一种力量的展示,在当前国际地缘政治错综复杂的情况下,有相当强的针对性,尤其是有关<font color="#C60A00">钓鱼岛</font>的争议,保卫<font color="#C60A00">钓鱼岛</font>是中国人特别是中国军人的天职。 《亮剑》的胜利并非凭借大投资和大明星,而是一种勇往直前的精神,实际上,李云龙那份不畏惧天下任何事的情怀,...</font>    
<a href="/ns?word=%B5%F6%D3%E3%B5%BA+cont:2316824519&cl=1&tn=news&rn=30 "><font color=#008000>2条相同新闻&gt;&gt;</a></font>
</td></tr></table><br>
----------------------------------------------------------------- 
要求提取: 
url = http://mil.news.sina.com.cn/p/2008-07-05/0926508862.html
标题 = 图文:“保钓联盟”15日前往钓鱼岛“宣示主权”
来源 = 新浪 
发布日期 =  2008-7-5 09:26; 
相同新闻 =  
----------------------------------------------------------------- 
----------------------------------------------------------------- 
要求提取: 
url = http://ent.sina.com.cn/v/m/2008-07-05/02042088437.shtml
标题 = 图文:“京华时报:《旗舰》因世俗而真实”
来源 = 新浪 
发布日期 = 2008-7-5 02:04; 
相同新闻 = 2
----------------------------------------------------------------- 高手请帮忙 

解决方案 »

  1.   


    ////////////////////////////////////////////////////////////////////////////////
    href="(?<url>.*?)"[\s\S]*?<b>(?<Ttile>.*?)</b.*?<nobr>(?<From>.*?)\s(?<date>.*?)</
    /////////////////////////////////////////////////
    (\d+)条
      

  2.   


    string message = "<a href=\"http://mil.news.sina.com.cn/p/2008-07-05/0926508862.html\"  rel=\"&a=5&pn=4\" target=_blank>";Regex reg = new Regex("href=\"(\\S+?)\"");
    MatchCollection mc = reg.Matches(message);foreach(Match m in mc)
    {
    Console.WriteLine(m.Result("$1"));
    }