Linq:读取节点内部文本
我有一个像这样的 xml 文档:
<ns:a xmlns:ns="http://NS1">
<ns:b>
<c xmlns="http://differentNS"> c_text </c>
<x xmlns="http://differentNS"> Wanted </x>
<d xmlns="http://differentNS"> d_text </d>
</ns:b>
</ns:a>
现在我想使用 linq 读取元素的“x”内部文本。
i have a xml document like this:
<ns:a xmlns:ns="http://NS1">
<ns:b>
<c xmlns="http://differentNS"> c_text </c>
<x xmlns="http://differentNS"> Wanted </x>
<d xmlns="http://differentNS"> d_text </d>
</ns:b>
</ns:a>
Now i want to use linq to read the element's "x" inner text.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下是使用 LINQ to XML 的可能实现:
相关资源
Here's a possible implementation using LINQ to XML:
Related resources:
您应该能够执行以下操作:
这不使用链接,但仍然非常简单。
You should be able to do something like this:
This isn't using link, but is still very simple.