在 Antlr3 Lexer 中识别 EOF 文件字符
我正在尝试使用 ANTLR 3 解析一些字符串...它们将用单引号引起来。因此,如果用户没有传递偶数个引号,它会一直运行到文件末尾,因为它假设它是一个巨大的字符串。
有没有办法指定ANTLR识别EOF字符?我已经尝试过 '
和 '\\z'
现在可用。
I'm trying to parse some strings using ANTLR 3...they are to be enclosed in single quotation marks. Therefore, if the user doesn't pass an even number of quotation marks it runs all the way to the end of file as it assumes it's a massive string.
Is there a way to specify ANTLR to recognize the EOF character? I've tried '<EOF>'
and '\\z'
to now avail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 ANTLR 中处理单引号字符串文字,您需要执行以下操作:
含义:
要表示 ANTLR 规则中的文件结束标记,只需使用
EOF
:它将匹配一个或更多
SingleQuotedString
,后跟文件末尾 (EOF
)。字符'\z'
不是 ANTLR 规则中的有效转义字符。To handle a single quoted string literal in ANTLR, you'd do something like this:
meaning:
And to denote the end-of-file token inside ANTLR rules, simply use
EOF
:which will match one or more
SingleQuotedString
s, followed by the end of the file (EOF
). The char'\z'
is not a valid escape char inside ANTLR rules.由于某种原因
EOF
对我不起作用(我使用的是antlr v4)另一种方法是在上层处理
EOF
。例如,如果您将EOF
定义为语句分隔符:您可以替换为:
For some reason
EOF
didn't work for me (am using antlr v4)An alternative is to handle the
EOF
at a upper level. For example if you defineEOF
as statement separator this way:You could replace with: