(f)lex 在一种状态下可以有多个表达式吗?

发布于 2024-10-19 09:59:06 字数 376 浏览 1 评论 0原文

一种状态下是否可能有多个相似的表达?我希望将一些表达方式组合在一起,让自己的生活变得轻松。我想做下面类似的事情,但它不起作用,只能识别第一个 expr,尽管它确实与 expr 匹配,但它不会使用 yytext 保存到数组中。我猜我做错了什么,所以任何帮助将不胜感激。谢谢

<some_state>"Milk;" |
"Honey;"    |
"Cinnamon;" |
"Cardamon;" |
"Rum;"      |
"Brandy;"   |
"Whiskey;"  |
"Aquavit;"  |
"Kahula;"   { printf("Example"); array[i].addition = yytext;BEGIN(amount_state);}

is it possible to have multiple expression in one state that are similar? I was hoping to group together a few expressions to make life easy for myself. i want to do something similar below but its not working and only recognise the 1st expr and although it does match the expr it doesnt save into the array using yytext. im guessing im doing something wrong so any help would be appreciated.Thanks

<some_state>"Milk;" |
"Honey;"    |
"Cinnamon;" |
"Cardamon;" |
"Rum;"      |
"Brandy;"   |
"Whiskey;"  |
"Aquavit;"  |
"Kahula;"   { printf("Example"); array[i].addition = yytext;BEGIN(amount_state);}

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

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

发布评论

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

评论(1

酒中人 2024-10-26 09:59:06

如果允许 flex,您可以使用如下所示的启动条件范围:

<some_state>{
"Milk;"         |
"Honey;"        |
...             |
"Kahula;"       { printf("Example"); ... }
}

如果仅允许 AT&T lex,不幸的是这可能无效...

If flex is allowed, you can use start condition scope like the following:

<some_state>{
"Milk;"         |
"Honey;"        |
...             |
"Kahula;"       { printf("Example"); ... }
}

If only AT&T lex is allowed, unfortunately this may be invalid...

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