可以自动将 ABNF 转换为 XML 吗?
是否可以自动将 ABNF 转换为 XML?特别是,我需要将以 ABNF 编写的语音识别语法转换为 XML。谢谢。
Is it possible to automatically convert ABNF into XML? In particular, I need to convert speech recognition grammars written in ABNF into XML. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您知道http://www.w3.org/TR/speech-grammar/,这似乎在 ABNF 和 XML 中表示相同的语音识别语法? (我不熟悉它,我几分钟前才偶然发现它。)
Are you aware of http://www.w3.org/TR/speech-grammar/, which seems to represent the same speech recognition grammars in both ABNF and XML? (I'm not familiar with it, I just stumbled upon it a few minutes ago.)
这应该很容易做到,但我不知道执行此操作的代码。例如 Sphinx4 中有 ABNF 解析器,它根据规则树的语法解析 ABNF。然后您可以将这棵树转储为 XML 形式。
It should be easy to do but I'm not aware about code to do that. There are ABNF parsers for example in Sphinx4 which parse ABNF according to the grammar to the tree of rules. Then you can just dump this tree in XML form.