gpt4 book ai didi

python - 简约 - 规则 'rules' 完全匹配,但它没有消耗所有文本

转载 作者:太空宇宙 更新时间:2023-11-03 14:14:25 26 4
gpt4 key购买 nike

我正在为表达式制作一个简单的解析器,这是我的代码:

import parsimonious as parmon

parser = parmon.Grammar(r"""
E = E "+" E / id
id = "0"/"1"/"2"/"3"/"4"/"5"/"6"/"7"/"8"/"9"
""")

code = "2+2"

print(parser.parse(code))

我收到此错误:

IncompleteParseError(text, node.end, self)
parsimonious.exceptions.IncompleteParseError: Rule 'rules' matched in its entirety, but it didn't consume all the text. The non-matching portion of the text begins with '/ id
id = "0"/"1"' (line 2, column 16).

我也尝试过 Lark-parser,但也无法解决这个问题。感谢帮助。

最佳答案

我无法提供任何关于你提到的解析器的东西。您考虑过pyparsing

  • id被定义为一位数字标记。
  • Forward表示E稍后将在代码中定义。 (这类似于过程语言中“前进”的使用。)
  • <<运算符插入 E 的定义进入其自身。括号要求“先匹配”,这意味着如果可能,将应用“或”中的第一个表达式。
  • 解析器在两个 print 内执行功能。

这是此类表达式的简单解析器。

from pyparsing import *

id = Word(nums, min=1, max=1)
E = Forward()
E << (id + '+' + E | id)

code = '2 + 2'

print (E.parseString(code))

print (E.parseString('3+4+5'))

此代码产生此结果。

['2', '+', '2']
['3', '+', '4', '+', '5']

关于python - 简约 - 规则 'rules' 完全匹配,但它没有消耗所有文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48285502/

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