如何使用 Perl 的 XML::Twig 来计算 XML 中的多个标签?
我正在使用 XML::Twig 使用 Perl 解析我的输入 xml。 我需要提取此 XML 中的特定节点并验证该节点以查看它是否具有多个
标记,然后计算这些 P 标记中的单词数。 例如:
<XML>
<name>
</name>
<address>
<p id="1">a b c d </p>
<p id="2">y y y </p>
</address>
</XML>
输出:
地址有 2 个段落标签,其中 7 话。
有什么建议吗?
I am using XML::Twig to parse my input xml using Perl.
I need to extact a particular node in this XML and validate that node to see if it has multiple <p>
tags and then count words in those P tags.
For example:
<XML>
<name>
</name>
<address>
<p id="1">a b c d </p>
<p id="2">y y y </p>
</address>
</XML>
Output:
Address has 2 paragraph tags with 7
words.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种方法:
XML::Twig 有一个专门的网站文档和教程来描述上面使用的处理程序技术。
Here is one way to do it:
XML::Twig has a dedicated website with documentation and a Tutorial to describe the handler technique used above.