在 Antlr3 Lexer 中识别 EOF 文件字符

发布于 2024-10-27 22:30:21 字数 178 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

待天淡蓝洁白时 2024-11-03 22:30:21

要在 ANTLR 中处理单引号字符串文字,您需要执行以下操作:

SingleQuotedString
  :  '\'' ('\\' ('\\' | '\'') | ~('\\' | '\'' | '\r' | '\n'))* '\''
  ;

含义:

'\''                              # a single quote
(                                 # (
  '\\' ('\\' | '\'')              #   a backslash followed by \ or '
  |                               #   OR
  ~('\\' | '\'' | '\r' | '\n')    #   any char other than \, ', \r and \n
)*                                # ) zero or more times
'\''                              # a single quote

要表示 ANTLR 规则中的文件结束标记,只需使用 EOF

parse
  :  SingleQuotedString+ EOF
  ;

它将匹配一个或更多 SingleQuotedString,后跟文件末尾 (EOF)。字符 '\z' 不是 ANTLR 规则中的有效转义字符。

To handle a single quoted string literal in ANTLR, you'd do something like this:

SingleQuotedString
  :  '\'' ('\\' ('\\' | '\'') | ~('\\' | '\'' | '\r' | '\n'))* '\''
  ;

meaning:

'\''                              # a single quote
(                                 # (
  '\\' ('\\' | '\'')              #   a backslash followed by \ or '
  |                               #   OR
  ~('\\' | '\'' | '\r' | '\n')    #   any char other than \, ', \r and \n
)*                                # ) zero or more times
'\''                              # a single quote

And to denote the end-of-file token inside ANTLR rules, simply use EOF:

parse
  :  SingleQuotedString+ EOF
  ;

which will match one or more SingleQuotedStrings, followed by the end of the file (EOF). The char '\z' is not a valid escape char inside ANTLR rules.

维持三分热 2024-11-03 22:30:21

由于某种原因 EOF 对我不起作用(我使用的是antlr v4)
另一种方法是在上层处理EOF。例如,如果您将 EOF 定义为语句分隔符:

program     : statement+ ;
statement   : some_stuff NEWLINE;

您可以替换为:

program     : (statement NEWLINE)* statement? ;
statement   : some_stuff;

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 define EOF as statement separator this way:

program     : statement+ ;
statement   : some_stuff NEWLINE;

You could replace with:

program     : (statement NEWLINE)* statement? ;
statement   : some_stuff;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文