gpt4 book ai didi

html-agility-pack - 替换 Html Agility 中的标签

转载 作者:行者123 更新时间:2023-12-04 13:29:09 25 4
gpt4 key购买 nike

我正在尝试更换我所有的 h1带有 h2 的标签标签,我正在使用 HtmlAgility 包。

我这样做了:

var headers = doc.DocumentNode.SelectNodes("//h1");
if (headers != null)
{
foreach (HtmlNode item in headers)
{
//item.Replace??
}
}

我被困在那里。我试过这个:
var headers = doc.DocumentNode.SelectNodes("//h1");
if (headers != null)
{
foreach (HtmlNode item in headers)
{
HtmlNode newNode = new HtmlNode(HtmlNodeType.Element, doc, item.StreamPosition);
newNode.InnerHtml = item.InnerHtml;
// newNode suppose to set to h2
item.ParentNode.ReplaceChild(newNode, item);
}
}

问题是我不知道如何创建新的 h2,获取所有属性等。
我确定有一个简单的方法可以做到这一点,有什么想法吗?

最佳答案

var headers = doc.DocumentNode.SelectNodes("//h1");
if (headers != null)
{
foreach (HtmlNode item in headers)
{
item.Name = "h2"
}
}

关于html-agility-pack - 替换 Html Agility 中的标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5936116/

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