一个关于 LINQ to XML 的简单问题

发布于 2024-09-06 14:18:08 字数 653 浏览 3 评论 0原文

<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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

轻拂→两袖风尘 2024-09-13 14:18:08

这不起作用,因为您在查询中缺少 root 元素。这可行:

XNamespace ns = "http://www.w3schools.com/furniture";
var query = XDocument.Parse(xml).Element("root").Elements(ns + "table");

现在,如果问题是您想要查找所有“表”元素无论的命名空间,您需要这样的东西:(

var query = XDocument.Parse(xml)
                     .Element("root")
                     .Elements()
                     .Where(element => element.Name.LocalName == "table");

编辑:作为请注意,如果需要,您可以使用 XDocument.Root 来获取根元素,重要的是尝试直接从文档节点获取 table 元素。本身是行不通的。)

This won't work because you're missing the root element from your query. This would work:

XNamespace ns = "http://www.w3schools.com/furniture";
var query = XDocument.Parse(xml).Element("root").Elements(ns + "table");

Now if the problem is that you want to find all "table" elements regardless of the namespace, you'd need something like this:

var query = XDocument.Parse(xml)
                     .Element("root")
                     .Elements()
                     .Where(element => element.Name.LocalName == "table");

(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 the table element directly from the document node itself won't work.)

乙白 2024-09-13 14:18:08

命名空间前缀不保证是特定的字母或字符串。最好的方法是按限定的命名空间进行搜索。

这将获取 XElement xml 的所有直接子节点,其中命名空间为 uri:namespace...

var selectedByNamespace = from element in xml.Elements()
                          where element.Name.NamespaceName == "uri:namespace"
                          select element;

另一个选项是选择基于完全限定名称的元素。

var ns = "{uri:namespace}";
var selectedElements = xml.Elements(ns + "table");

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 is uri:namespace...

var selectedByNamespace = from element in xml.Elements()
                          where element.Name.NamespaceName == "uri:namespace"
                          select element;

Another option would be to select the elements based on the fully qualified name.

var ns = "{uri:namespace}";
var selectedElements = xml.Elements(ns + "table");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文