linq to xml - 删除包装器节点
有没有办法删除包裹其他几个节点的节点,但保留包含的节点?
我需要删除“AreaImageCaption”的所有实例,但需要保留“image”和“caption”
<products>
<product>
<name>100</name>
<AreaImageCaption>
<image>image1</image>
<caption>caption1</caption>
</AreaImageCaption>
<AreaImageCaption>
<image>image2</image>
<caption>caption2</caption>
</AreaImageCaption>
</product>
</products>
谢谢
is there a way to remove a node that is wrapping a few other nodes, but keeping the containing nodes?
I need to remove all the instances of "AreaImageCaption", but need to keep "image" and "caption"
<products>
<product>
<name>100</name>
<AreaImageCaption>
<image>image1</image>
<caption>caption1</caption>
</AreaImageCaption>
<AreaImageCaption>
<image>image2</image>
<caption>caption2</caption>
</AreaImageCaption>
</product>
</products>
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下,
我尝试添加
中的所有子元素并将其添加到其父元素,然后删除
元素。Try this
I'm trying to add all child elements from
<AreaImageCaption />
and add it to it's parent and then remove the<AreaImageCaption />
element.