如何获得“一些文本”?来自一些文本 用蟒蛇?
我正在使用 python & Mindom 模块。
我想从中提取 abc
<someTag>abc</someTag>.
假设我可以访问 someTag
,如何从那里检索 abc
?
I'm using python & mindom module.
I'd like to extract abc
from
<someTag>abc</someTag>.
Suppose I can get to someTag
, how do I retrieve the abc
from there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你有 someTag
来获取它的数据
你可以通过调用 tag.data f.ex 。有关
更详细的示例,请参阅 http://docs。 python.org/library/xml.dom.minidom.html#dom-example
If you have the someTag
you can get it's data by calling tag.data
f.ex. by
for a more worked out example, see http://docs.python.org/library/xml.dom.minidom.html#dom-example