gpt4 book ai didi

c# - 检索 Html 标签 C# 的内部文本

转载 作者:行者123 更新时间:2023-11-30 17:16:27 26 4
gpt4 key购买 nike

我有一个包含 html 的字符串。这个字符串里面有一个 html 标签,我想检索它的内部文本。我如何在 C# 中执行此操作?

这是我要检索其内部文本的 html 标记:

<td width="100%" class="container">

最佳答案

使用 Html Agility Pack .


编辑像这样的东西(未测试)

HtmlDocument doc = new HtmlDocument();
string html = /* whatever */;
doc.LoadHtml(html);
foreach(HtmlNode td in doc.DocumentElement.SelectNodes("//td[@class='container']")
{
string text = td.InnerText;
// do whatever with text
}

您也可以直接使用a different XPath selector 选择文本。 .


相关问题:

关于c# - 检索 Html 标签 C# 的内部文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7249254/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com