我曾经pyparsing
解析大量文本并获得一些数字。我正在解析的文本是这样的:
asdkjh 1 120 203
kajshd 230 2309 2309
Activated Attempts 230 2309 2309
Activated Attempts 230 2309 2309
aksjdh 300
...
我需要搜索一个字符串并捕获紧跟在给定字符串之后的所有值。我写的代码看起来像这样,它工作正常。
returnValue= 0
integer = pyparsing.Word(pyparsing.nums).setParseAction(lambda toks: int(toks[0]))
attempted = integer.setResultsName("attempted")
text = "Activated Attempts"
row = text + attempted
table = pyparsing.ZeroOrMore(pyparsing.Group(row) | pyparsing.SkipTo(row).suppress())
attempteds = [row.asDict() for row in table.parseString(self.sendLine("lts_pm p"))]
for attempted in attempteds:
returnValue+= attempted["attempted"]
return returnValue
在上述情况下,它将返回 460。上述函数搜索给定的“激活的尝试”并存储该文本后跟的数字,汇总数字并返回。
但是我需要在同一个脚本中添加更多搜索查询,我尝试了:
text = pyparsing.Keyword("Activated Attempts") or pyparsing.Keyword("Non Attempts")
但该脚本仅捕获“激活的尝试”并返回其编号并完全忽略第二个文本。Keyword
如果不是这个有什么用?我也尝试过Literal
,但也没有成功!