如何在 Perl libXML::Reader 中读取节点的值
我的 XML 看起来像这样 -
<info>
<name>NameGoesHere</name>
<age>99</age>
</info>
使用 XML::LibXML::Reader,我想打印年龄。
我从此处阅读了文档,并且我我正在寻找一个例子。我可以使用 $reader->nextElement('info')
然后打印 innerXML
但无法弄清楚如何仅打印年龄而不是整个年龄innerxml
。
My XML looks like this-
<info>
<name>NameGoesHere</name>
<age>99</age>
</info>
Using XML::LibXML::Reader, I would like to print the age.
I read the documentation from here, and I am looking for an example. I am able to use $reader->nextElement('info')
and then print innerXML
but not able to figure out how do I print only age and not the whole innerxml
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
localName
:主要来自 正则表达式:把一切都放在<专业>上标签
Try
localName
:Mostly from Regex: keep everything in <profession></profession> tags