如何识别lex中扫描程序的字符串文字?

时间:2011-03-16 18:05:11

标签: regex lex

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

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

这些都不起作用。每次被认可的词汇都是“孤独的。我该怎么办? 提前谢谢......

2 个答案:

答案 0 :(得分:3)

简单,试试这个:

\".*\"     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

答案 1 :(得分:1)

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