日期:2014-05-17 浏览次数:20359 次
<table>
<tr>
<td class="f">
<h3 class="t">
<div class="c-abstract">
11111</div>
<div class="f13">
<span class="g">www.yzyufeng.cn/ 2013-7-13 </span>- 百度快照
</div>
</h3>
</td>
</tr>
</table>
Regex reg1 = new Regex(@"(?<=<td class=""f"">).+?(?=</td>)");
Regex reg2 = new Regex(@"\d{4}-\d{1,2}-\d{1,2}");
foreach (Match m in reg1.Matches(上面html代码))//获取有效数据
{
m.Value;//内容
string time = reg2.Match(m.Value).ToString();//获取时间
}
}