英文:
Context Free Grammar (CFG) Parser in Go
问题
我正在寻找一个提供CFG解析的Go库(最好不是在乔姆斯基范式下)。有人听说过类似的东西吗,还是我应该自己写?
英文:
I am looking for a Go library providing CFG parsing (preferably not in Chomsky Normal Form). Has anybody heard of anything, or should I write it ?
答案1
得分: 4
你知道goyacc吗?虽然它不是一个库,而是一个代码生成器。无论如何,它支持CFGs,并且在我看来是处理这类任务的一种相当标准的方式。
英文:
Do you know about goyacc?. Although it's not a library, but a code generator. Anyway it supports CFGs and it's IMO a pretty standard way to handle such tasks. (?)
答案2
得分: 2
我不能具体帮助你关于CFGs,但是Go Dashboard是一个很好的Go库的中央列表。
在浏览它的解析器时,有两个看起来很有帮助:
英文:
I cannot help you specifically with CFGs, but the Go Dashboard is a good central list of Go libraries.
Looking over it for parsers, two look helpful at first glace:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论