C# 获得一段html的正则表达式
<tr><tdcolspan="3"style="background-color:#F7FAFF;height:36px;line-height:20px;"><tab...
<tr><td colspan="3" style="background-color:#F7FAFF; height: 36px; line-height:20px; "><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td width="75%"><strong style="font-size: 14px">北京分享天下科技有限公司</strong>
获取 北京分享天下科技有限公司
急!! 展开
获取 北京分享天下科技有限公司
急!! 展开
2个回答
展开全部
如果HTML格式确定的话,可以用:
<tr\s*[^>]*><td\s*[^>]*><strong\s*[^>]*>([^<]+)
C#代码:
Regex reg = new Regex(@"<tr\s*[^>]*><td\s*[^>]*><strong\s*[^>]*>([^<]+)", RegexOptions.IgnoreCase);
string st = "html";
Match m = reg.Match(st);
if (m.Success)
{
Console.WriteLine(m.Groups[1].Value);// 输出你要的字符串
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询