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>

获取 北京分享天下科技有限公司
急!!
展开
 我来答
wangpaishi
2013-11-06 · TA获得超过570个赞
知道小有建树答主
回答量:932
采纳率:52%
帮助的人:758万
展开全部
Macth m = Regex.Match(html, "<strong style=\"font-size: 14px\">(?<CompanyName>.*?)</strong>", ...);
if (m.Success)
{
    string companyName = m.Group["CompanyName"].Value;
}

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
youbl
2013-11-06 · TA获得超过2510个赞
知道大有可为答主
回答量:1844
采纳率:62%
帮助的人:1666万
展开全部

如果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);// 输出你要的字符串
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式