一个关于 LINQ to XML 的简单问题
<root xmlns:h="http://www.w3.org/TR/html4/"
xmlns:f="http://www.w3schools.com/furniture">
<h:table>
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
<f:table>
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
</root>
我正在尝试练习 LinqToXml,但我无法弄清楚我想要什么。简单地说,我如何查询具有 h 或 f 命名空间的表元素? 这就是我尝试过的。我也尝试了不同的但没有成功。
var query = from item in XDocument.Parse(xml).Elements(ns + "table")
select item;
<root xmlns:h="http://www.w3.org/TR/html4/"
xmlns:f="http://www.w3schools.com/furniture">
<h:table>
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
<f:table>
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
</root>
I am trying to practice LinqToXml but i can't figure out what i wanted.Simply how can i query table elements which has h or f namespace ?
This was what i tried .Also i tried different ones but didn't work.
var query = from item in XDocument.Parse(xml).Elements(ns + "table")
select item;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不起作用,因为您在查询中缺少
root
元素。这可行:现在,如果问题是您想要查找所有“表”元素无论的命名空间,您需要这样的东西:(
编辑:作为请注意,如果需要,您可以使用 XDocument.Root 来获取根元素,重要的是尝试直接从文档节点获取 table 元素。本身是行不通的。)
This won't work because you're missing the
root
element from your query. This would work:Now if the problem is that you want to find all "table" elements regardless of the namespace, you'd need something like this:
(EDIT: As noted, you could use
XDocument.Root
to get to the root element if you want to. The important point is that trying to get to thetable
element directly from the document node itself won't work.)命名空间前缀不保证是特定的字母或字符串。最好的方法是按限定的命名空间进行搜索。
这将获取
XElement xml
的所有直接子节点,其中命名空间为uri:namespace
...另一个选项是选择基于完全限定名称的元素。
Namespace prefixes are not guaranteed to be a particular letter or string. The best approach would be to search by the qualified namespace.
This would get all direct child nodes of
XElement xml
where the namespace isuri:namespace
...Another option would be to select the elements based on the fully qualified name.