获取某个元素下的所有文本
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设
XElement
指向 Element 标记,您可以执行以下操作You could do the following assuming
XElement
was pointing to the Element tag因为你需要任何孩子而不仅仅是“B”
如果 root 是您的 Element 标签,就像 XElement 一样
As you need any children not just the "B"s
if root is your Element tag as as XElement