获取内部文本的第一部分

发布于 2024-08-17 14:49:44 字数 202 浏览 2 评论 0原文

这就是我得到的:

<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 技术交流群。

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

发布评论

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

评论(2

反目相谮 2024-08-24 14:49:44

在 python 中,它将是: somexml.firstChild.firstChild.datasomexml.getElementsByTagName('xml').firstChild[0].data

In python it would be: somexml.firstChild.firstChild.data or somexml.getElementsByTagName('xml').firstChild[0].data

心意如水 2024-08-24 14:49:44

这实际上是针对 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

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