获取 xml 中搜索关键字的前一个节点

发布于 2024-11-15 12:52:56 字数 962 浏览 0 评论 0原文

我有一个如下所示的 xml 文档:

<bookstore>
  <book>
    <title>The Autobiography of Benjamin Franklin</title>
    <author>
     <first-name>Benjamin</first-name>
     <last-name>Franklin</last-name>
    </author>
    <price>8.99</price>
  </book>
  <book>
    <title>Zen and the Art of Motorcycle Maintenance</title>
    <author>
     <first-name>Robert</first-name>
     <last-name>Pirsig</last-name>
    </author>
    <price>5.99</price>
  </book>
  <book>
    <title>Other Cities</title>
    <author>
     <first-name>Benjamin</first-name>
     <last-name>Rosenbaum</last-name>
    </author>
    <price>9.99</price>
  </book>
</bookstore>

当然,书店有不止一本书,所以我想搜索作者,然后返回包含搜索到的作者的图书节点的 XElement姓名。

I have an xml document like the following:

<bookstore>
  <book>
    <title>The Autobiography of Benjamin Franklin</title>
    <author>
     <first-name>Benjamin</first-name>
     <last-name>Franklin</last-name>
    </author>
    <price>8.99</price>
  </book>
  <book>
    <title>Zen and the Art of Motorcycle Maintenance</title>
    <author>
     <first-name>Robert</first-name>
     <last-name>Pirsig</last-name>
    </author>
    <price>5.99</price>
  </book>
  <book>
    <title>Other Cities</title>
    <author>
     <first-name>Benjamin</first-name>
     <last-name>Rosenbaum</last-name>
    </author>
    <price>9.99</price>
  </book>
</bookstore>

Of course, the bookstore has more than one book, so I I want to search for an author and then get returned an XElement for the book node that contains the searched author name.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦里人 2024-11-22 12:52:56
var document = XDocument.Parse(xml);

var bookElements = document.Descendants("book")
    .Where(arg => arg.Element("author").Element("first-name").Value == "Benjamin")
    .ToList();

var bookElements = document.Descendants("first-name")
    .Where(arg => arg.Value == "Benjamin")
    .Select(arg => arg.Parent.Parent)
    .ToList();

[编辑]当您继续编辑问题时,我将编辑答案:)。

要查找符合条件的第一本书:

var foundBookElement = document.Descendants("book")
    .Where(arg => arg.Element("author").Element("first-name").Value == "Benjamin")
    .FirstOrDefault();

如果没有书籍符合条件,foundBookElement 将为 null。

var document = XDocument.Parse(xml);

var bookElements = document.Descendants("book")
    .Where(arg => arg.Element("author").Element("first-name").Value == "Benjamin")
    .ToList();

or

var bookElements = document.Descendants("first-name")
    .Where(arg => arg.Value == "Benjamin")
    .Select(arg => arg.Parent.Parent)
    .ToList();

[Edit] As you keep editing the question, I will edit the answer :).

To find the first book that meets the criteria:

var foundBookElement = document.Descendants("book")
    .Where(arg => arg.Element("author").Element("first-name").Value == "Benjamin")
    .FirstOrDefault();

foundBookElement will be null if none of the books match the criteria.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文