我有一个我要解析的游戏文件。这是摘录:
<stage> id: 50 #Survival Stage
<phase> bound: 1500 # phase 0 bandit
music: bgm\stage4.wma
id: 122 x: 100 #milk ratio: 1
id: 30 hp: 50 times: 1
id: 30 hp: 50 times: 1 ratio: 0.7
id: 30 hp: 50 times: 1 ratio: 0.3
<phase_end>
<stage_end>
#
表示评论,但仅对人类读者有效,对游戏解析器无效。前两个注释位于该行的末尾,但是ratio: 1
之后的#milk
不是注释的一部分,它实际上很重要。我认为游戏的解析器会忽略它无法理解的任何令牌。有没有办法在pyparsing中做到这一点?
我尝试使用parser.ignore(pp.Word(pp.printables))
,但这使它跳过了所有内容。到目前为止,这是我的代码:
import pyparsing as pp
txt = """
<stage> id: 50 #Survival Stage
<phase> bound: 1500 # phase 0 bandit
music: bgm\stage4.wma
id: 122 x: 100 #milk ratio: 1
id: 30 hp: 50 times: 1
id: 30 hp: 50 times: 1 ratio: 0.7
id: 30 hp: 50 times: 1 ratio: 0.3
<phase_end>
<stage_end>
"""
phase = pp.Literal('<phase>')
stage = pp.Literal('<stage>') + pp.Literal('id:') + pp.Word(pp.nums)('id') + pp.OneOrMore(phase)
parser = stage
parser.ignore(pp.Word(pp.printables))
print(parser.parseString(txt).dump())
答案 0 :(得分:1)
在股票游戏文件中,只有ratio:
关键字出现在#
之后,因此我用它来定义评论的结尾,如下所示:
parser.ignore(Suppress('#') + SkipTo(MatchFirst([FollowedBy('ratio:'), LineEnd()])))