获取内部文本的第一部分
这就是我得到的:
<xml>I need this text<notthistext>blahblah<notthistext></xml>
我怎样才能得到: 我需要这个文本,
我正在使用 .value,它返回所有内容的文本,如下所示: 我需要这个文本等等
This is what I got:
<xml>I need this text<notthistext>blahblah<notthistext></xml>
How can I get:
I need this text
I am using .value and it is returning the text for everything like this:
I need this textblahblah
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 python 中,它将是:
somexml.firstChild.firstChild.data
或somexml.getElementsByTagName('xml').firstChild[0].data
In python it would be:
somexml.firstChild.firstChild.data
orsomexml.getElementsByTagName('xml').firstChild[0].data
这实际上是针对 linq 的
技巧是获取元素下的所有节点,并仅使用 First 函数而不是使用 value 引用第一个节点
This is actually for linq
The trick was to get all the nodes under the element and just reference the first node using the First function rather then using value