如何在 lex 中识别扫描仪的字符串文字?

发布于 2024-10-23 20:57:22 字数 263 浏览 1 评论 0原文

好吧,我一直在尝试在 lex 中找到一个正则表达式,它可以识别输入字符串中类似 C 的字符串文字。例如。在 printf("stackoverflow") 中,“stackoverflow”应被识别为字符串文字。 我一直在尝试以下方法:

"[.]+"
["][.]+["]
\"[.]+\"
[\"][.]+[\"]
"""[.]+"""

这些都不起作用。每次识别的词位都是“alone”,我该怎么办? 提前致谢...

Ok, I have been trying to find a regular expression in lex that will recognize a C-like string literal in an input string. eg. in printf("stackoverflow"), "stackoverflow" should be recognized as a string literal.
I have been trying the following:

"[.]+"
["][.]+["]
\"[.]+\"
[\"][.]+[\"]
"""[.]+"""

None of these is working. The lexeme recognized each time is " alone. What should I do?
Thanks in advance...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

花海 2024-10-30 20:57:23

很简单,试试这个:

\".*\"     printf("STRING[%s]", yytext);
\'.*\'     printf("STRING[%s]", yytext);

编译和运行时,快速测试显示它正确解析字符串,例如

"hello world!"
STRING["hello world!"]
'hello world!'
STRING['hello world!']
'john\'s cat'
STRING['john\'s cat']
'mary said "hello!"'
STRING['mary said "hello!"']
"frank said \"goodbye!\""
these are words "which contain" a string
these are words STRING["which contain"] a string

Simple, try this:

\".*\"     printf("STRING[%s]", yytext);
\'.*\'     printf("STRING[%s]", yytext);

When compiled and run, a quick test shows it correctly parses strings like

"hello world!"
STRING["hello world!"]
'hello world!'
STRING['hello world!']
'john\'s cat'
STRING['john\'s cat']
'mary said "hello!"'
STRING['mary said "hello!"']
"frank said \"goodbye!\""
these are words "which contain" a string
these are words STRING["which contain"] a string
你怎么敢 2024-10-30 20:57:23

您可能会发现这些链接很有帮助

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