求一个获取下面指定字符串的C#正则表达式
下面是已知的字符串格式,需要获取到里面的列表内容(在这里,获取的结果应该是[初分难信解品第34-68]和[初分难信解品第34-69]以及[初分难信解品第34-70]只需正...
下面是已知的字符串格式,需要获取到里面的列表内容(在这里,获取的结果应该是[初分难信解品第34-68]和[初分难信解品第34-69]以及[初分难信解品第34-70] 只需正则表达式即可,无需具体过程,多谢各位
<tr>
<td valign="top" width="213" height="15" align="left"><img border="0" src="images/kgin-icon.gif" width="10" height="10">
<a href="220-201.htm"></a><a href="220-249.htm">初分难信解品第34-68</a></td>
<td valign="top" width="215" height="15" align="left"><img border="0" src="images/kgin-icon.gif" width="10" height="10">
<a href="220-201.htm"></a><a href="220-250.htm">初分难信解品第34-69</a></td>
<td valign="top" width="178" height="15" align="left"><img border="0" src="images/kgin-icon.gif" width="10" height="10">
<a href="220-201.htm"></a><a href="220-251.htm">初分难信解品第34-70</a></td>
</tr> 展开
<tr>
<td valign="top" width="213" height="15" align="left"><img border="0" src="images/kgin-icon.gif" width="10" height="10">
<a href="220-201.htm"></a><a href="220-249.htm">初分难信解品第34-68</a></td>
<td valign="top" width="215" height="15" align="left"><img border="0" src="images/kgin-icon.gif" width="10" height="10">
<a href="220-201.htm"></a><a href="220-250.htm">初分难信解品第34-69</a></td>
<td valign="top" width="178" height="15" align="left"><img border="0" src="images/kgin-icon.gif" width="10" height="10">
<a href="220-201.htm"></a><a href="220-251.htm">初分难信解品第34-70</a></td>
</tr> 展开
2个回答
展开全部
MatchCollection mc = Regex.Matches(txt, @"<td[^>]*>((?!</?td)[\s\S])*</td>", RegexOptions.IgnoreCase);
for (int p = 0; p <mc.Count; p++)
{
string content=Regex.Replace(mc[p].Value, @"\<(td|img|a)[^>]*>|<\/(td|a)>", "", RegexOptions.IgnoreCase);
Console.WriteLine(content);
}
感觉他那个抓的不对,他抓得是<a>跟</a>间的,你要的好像是<td>跟</td>间的,txt就是已知的字符串,content就是你要的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询