将小写字母与 ANTLR 匹配
我使用 ANTLRWorks 来实现简单的语法:
grammar boolean;
// [...]
lowercase_string
: ('a'..'z')+ ;
但是,根据解释器,lowercase_string
与 foobar
不匹配 (MismatchedSetException(10!={})
. 想法?
I use ANTLRWorks for a simple grammar:
grammar boolean;
// [...]
lowercase_string
: ('a'..'z')+ ;
However, the lowercase_string
doesn't match foobar
according to the Interpreter (MismatchedSetException(10!={})
. Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能在解析器规则中使用
..
运算符。要匹配'a'
到'z'
范围,请为其创建一个词法分析器规则(词法分析器规则以大写字母开头)。尝试这样:
或者:
另请参阅之前的问答:ANTLR 中解析器规则和词法分析器规则之间的实际区别?
You can't use the
..
operator inside parser rules like that. To match the range'a'
to'z'
, create a lexer rule for it (lexer rules start with a capital).Try it like this:
or:
Also see this previous Q&A: Practical difference between parser rules and lexer rules in ANTLR?