在 swi-prolog 中,如何漂亮地打印从 load_xml_file('file.xml', Term) 获取的术语?
swi-prolog 使用 list of list of list of ... 来表示 XML 树。 我试过
write(Term)
它缩进不好,而且
format(Term)
它不支持列表,而且
pretty_print
它似乎不是用于列表的,它是在rb树库中定义的。
swi-prolog uses list of list of list of ... to represent XML tree.
I tried
write(Term)
it doesn't indent good, and
format(Term)
it doesn't support list, and
pretty_print
it seems it is not for list,and it is defined in rb tree library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用示例:
Usage example: