使用 XElement 获取 C# 中的最后一个元素

发布于 2024-12-11 21:00:50 字数 301 浏览 0 评论 0原文

我在 XElement 中加载了 XML 提要。

结构是

<root>
<post></post>
<post></post>
<post></post>
<post></post>
.
.
.
.
<post></post>
</root>

我想直接获取Last post的值。我如何在 C# 中使用 XElement 来做到这一点。

谢谢。

I have a XML feed loaded in an XElement.

The structure is

<root>
<post></post>
<post></post>
<post></post>
<post></post>
.
.
.
.
<post></post>
</root>

I want to directly get the value of the Last post. How I do that using XElement in C#.

Thanks.

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

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

发布评论

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

评论(5

困倦 2024-12-18 21:00:50

或者尝试以下方法获取 XElement:

XDocument doc = XDocument.Load("yourfile.xml");          
XElement root = doc.Root;
Console.WriteLine(root.Elements("post").Last());

Or try this to get XElement:

XDocument doc = XDocument.Load("yourfile.xml");          
XElement root = doc.Root;
Console.WriteLine(root.Elements("post").Last());
喵星人汪星人 2024-12-18 21:00:50

您可以在根元素上使用 LastNode 属性:

XElement root = doc.Root;
XElement lastPost = (XElement)root.LastNode;

You can use LastNode property on root element:

XElement root = doc.Root;
XElement lastPost = (XElement)root.LastNode;
辞别 2024-12-18 21:00:50
var doc = XDocument.Parse(xml);
var lastPost = doc.Descendants("post").Last();
var doc = XDocument.Parse(xml);
var lastPost = doc.Descendants("post").Last();
安静被遗忘 2024-12-18 21:00:50

试试这个:

rootElement.Descendants().Last()

如果您不确定是否有,您也可以使用 LastOrDefault()。如果除了 之外可能还有其他元素,则有大量的后代可以让您找到您要查找的帖子。

Try this:

rootElement.Descendants().Last()

If you aren't sure there'll be any, you could also use LastOrDefault(). If there might be other elements besides within the , there's an overload of Descendants that will let you find just the posts you're looking for.

粉红×色少女 2024-12-18 21:00:50

试试这个

XDocument doc= XDocument.Load("path to xml");
var last=doc.Root.LastNode;

Try this

XDocument doc= XDocument.Load("path to xml");
var last=doc.Root.LastNode;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文