如何在特定标签后插入另一个标签,并删除标签
示例我有这个HTML
<p class="cs40314EBF"><span class="cs1B16EEB5">This is an ordinary text.</span></p>
这是可能的输出
<p class="cs40314EBF"><b>This is an ordinary text.</b></p>
这是我的代码
HtmlDocument doc = new HtmlDocument();
doc.Load(htmlLocation);
foreach (var item in doc.DocumentNode.Descendants())
{
if (item.Name == "span")
{
HtmlNode div = doc.CreateElement("b");
//what do i need to do here?
}
}
我做了一项研究,发现了这个
http://www.nudoq.org/#!/Packages/HtmlAgilityPack/HtmlAgilityPack/HtmlNode/M/InsertBefore
但我无法使其发挥作用。
我无法使用
if (item.Name == "span")
{
item.Name = "newtag";
}
因为我需要班级的价值。决定我将使用哪个标签
答案 0 :(得分:4)
请检查以下代码,您需要设置InnerHtml
并通过调用保存方法doc.Save(yourfilepath)
来保存Html文档。
if (item.Name == "span")
{
HtmlNode div = doc.CreateElement("b");
div.InnerHtml = "Hello world";
item.AppendChild(div);
doc.Save(yourfilepath);
}
答案 1 :(得分:1)
你能试试吗?
var doc1 = new HtmlAgilityPack.HtmlDocument();
doc1.LoadHtml("<p class=\"cs40314EBF\"><span class=\"cs1B16EEB5\">This is an ordinary text.</span></p>");
foreach (var item in doc1.DocumentNode.Descendants())
{
if (item.Name == "span")
{
HtmlNode b = doc.CreateElement("b");
b.InnerHtml = item.InnerText;
item.ParentNode.AppendChild(b);
item.Remove();
}
}