如何解析Rebol中的层次结构?
我重读了章节 http://www.rebol.com/docs/core23/ rebolcore-15.html on any 并解析但无法实现解析这种层次结构:有可能吗?
<Multipage>
<tab id=1>
<box id=1>
</box>
</tab>
<tab id=2>
<box id=2>
Hello
</box>
</tab>
<tab>
</tab>
<tab>
</tab>
</Multipage>
I have reread chapter http://www.rebol.com/docs/core23/rebolcore-15.html on any and parse but can't achieve to parse this kind of hiearchical structure: is it possible ?
<Multipage>
<tab id=1>
<box id=1>
</box>
</tab>
<tab id=2>
<box id=2>
Hello
</box>
</tab>
<tab>
</tab>
<tab>
</tab>
</Multipage>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Gavin MacKenzie 的 xml 解析脚本位于 http://www.rebol .org/view-script.r?script=xml-parse.r1 将解析大多数 XML 数据。由于它是一个通用解决方案,因此它比特定 XML 文件的一组解析规则更复杂,这是可以理解的。
Gavin MacKenzie's xml-parse script at http://www.rebol.org/view-script.r?script=xml-parse.r1 will parse most XML data. As it is a generalised solution it is understandably more complex than a set of parse rules for a specific XML file.
是的,这是可能的,而且不是很难:
运行此代码,您将得到输出:
Yes it's possible and not very hard :
Running this code, you'll get as output: