gpt4 book ai didi

python - 使用 pyparsing 进行非贪婪列表解析

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

我有一个由单词列表组成的字符串,我试图用 pyparsing 对其进行解析。

该列表始终至少包含三个项目。由此我希望 pyparsing 生成三组,第一组包含所有单词直到最后两项,最后两组应该是最后两项。例如:

"one two three four"

应该被解析成类似的东西:

["one two"], "three", "four"

我可以用正则表达式做到这一点:

import pyparsing as pp
data = "one two three four"
grammar = pp.Regex(r"(?P<first>(\w+\W?)+)\s(?P<penultimate>\w+) (?P<ultimate>\w+)")
print(grammar.parseString(data).dump())

给出:

['one two three four']
- first: one two
- penultimate: three
- ultimate: four

我的问题是,由于 pyparsing 贪婪的性质,我无法使用非 Regex ParserElement 获得相同的结果,例如:

import pyparsing as pp
data = "one two three four"
word = pp.Word(pp.alphas)
grammar = pp.Group(pp.OneOrMore(word))("first") + word("penultimate") + word("ultimate")
grammar.parseString(data)

回溯失败:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/site-packages/pyparsing.py", line 1125, in parseString
raise exc
pyparsing.ParseException: Expected W:(abcd...) (at char 18), (line:1, col:19)

因为 OneOrMore 吞掉了列表中的所有单词。到目前为止,我使用 FollowedBy 或 NotAny 来防止这种贪婪行为的尝试都失败了 - 关于如何获得所需行为的任​​何建议?

最佳答案

好吧,您的 OneOrMore 表达式只需要稍微收紧 - 您在 FollowedBy 的正确轨道上。你并不真的只想要 OneOrMore(单词),你想要“OneOrMore(后面至少有 2 个单词的单词)”。要将这种先行添加到 pyparsing,您甚至可以使用新的“*”乘法运算符来指定先行计数:

grammar = pp.Group(pp.OneOrMore(word + pp.FollowedBy(word*2)))("first") + word("penultimate") + word("ultimate")

现在将其倾倒出来得到所需的:

[['one', 'two'], 'three', 'four']
- first: ['one', 'two']
- penultimate: three
- ultimate: four

关于python - 使用 pyparsing 进行非贪婪列表解析,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30918013/

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