如何在flex(词法分析器)中启用最短匹配规则?
默认情况下,flex 使用最长匹配规则。 有什么方法可以覆盖此行为以使其匹配最短序列?
谢谢
By default flex uses the longest match rule.
Is there any way to override this behavior to make it match the shortest sequence?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此页面 说它没有任何非贪婪运算符,因为它是扫描器而不是解析器,并建议可以使用正则表达式来添加缺失的内容功能。
This page in the Flex manual says that it doesn't have any non-greedy operators because it is a scanner rather than a parser, and suggests regular expressions could be used to add the missing functionality.