gpt4 book ai didi

parsing - 如何使用 PetitParser 解析以关键字开头的标识符?

转载 作者:行者123 更新时间:2023-12-03 07:34:25 28 4
gpt4 key购买 nike

我想使用 PetitParser 解析编程语言中的标识符。

要求之一是标识符的名称不是关键字(例如 null ),因此 null将不是有效的标识符。

对于这种情况,我能想到的最小解析器是:

identifier := ('null' asParser not,  #word asParser plus)

但是,如果输入以关键字开头,则会失败:
identifier end parse: 'nullable'

你有什么建议来解决这个问题吗?谢谢!

最佳答案

identifier := ('null' asParser, #word asParser plus) /
('null' asParser not, #word asParser plus).

identifier end parse: 'nullable'. "=> #('null' #($a $b $l $e))"
identifier end parse: 'null'. "=> 'at 0'"
identifier end parse: 'foo' "=> #(nil #($f $o $o))"
at 0是 PetitParser 的默认“解析失败”错误,表明解析器将接受“可空”、普通词,而不是“空”。

关于parsing - 如何使用 PetitParser 解析以关键字开头的标识符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13970979/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com