使用 SAX 计算元素内的元素数量
有没有办法使用 SAX 解析器来计算另一个元素中的元素数量? 例如,我正在使用以下 xml 文件:
<子字段标签 = "xxx">yyy
<子字段标签 = "xxx">yyy
<子字段标签 = "xxx">yyy
如何获取“varfield 标记”内“子字段”标记的数量?
is there any way to count the number of elements within another element using SAX Parser?
For example I'm using this xml file:
<varfield id = "xxx">
<subfield label = "xxx">yyy</subfield>
<subfield label = "xxx">yyy</subfield>
<subfield label = "xxx">yyy</subfield>
</varfield>
How do i get the number of "subfield" tags within the "varfield tag"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用 dom 解析器轻松做到这一点
You can do that easily with dom parser