获取某个元素下的所有文本

发布于 2024-08-20 13:59:24 字数 200 浏览 9 评论 0原文

我的 xml 看起来像这样

<Element> text <B>text<B></Element>

未知数量的 B 标签或标签,甚至名称不同。

我如何从这些中获取文本?所以它就像

文本文本

使用 linq to xml 的

My xml looks like this

<Element> text <B>text<B></Element>

Unknown number of B tags or tags even of a different name.

How do i get the text from these? so it would be like this

text text

using linq to xml

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

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

发布评论

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

评论(2

岁月静好 2024-08-27 13:59:24

假设 XElement 指向 Element 标记,您可以执行以下操作

var root = GetRoot();
var text = root.Elements("B").Select(x => x.Value);

You could do the following assuming XElement was pointing to the Element tag

var root = GetRoot();
var text = root.Elements("B").Select(x => x.Value);
救赎№ 2024-08-27 13:59:24

因为你需要任何孩子而不仅仅是“B”
如果 root 是您的 Element 标签,就像 XElement 一样

var text = string.Empty;
root.DescendentsAndSelf().Select(x => text += x.Value);

As you need any children not just the "B"s
if root is your Element tag as as XElement

var text = string.Empty;
root.DescendentsAndSelf().Select(x => text += x.Value);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文