我正在尝试使用python简约库解析多行文本。我已经玩了一段时间了,并且无法弄清楚如何有效地处理换行。一个例子如下。下面的行为是有道理的。我在简约问题中看到了来自this comment的Erik Rose,但我无法弄清楚如何在没有错误的情况下实现它。感谢您的任何提示...
singleline_text = '''\
FIRST something cool'''
multiline_text = '''\
FIRST something very
cool
SECOND more awesomeness
'''
grammar = Grammar(
"""
bin = ORDER spaces description
ORDER = 'FIRST' / 'SECOND'
spaces = ~'\s*'
description = ~'[A-z0-9 ]*'
""")
适用于单行输出,print(grammar.parse(singleline_text))
给出:
<Node called "bin" matching "FIRST something cool">
<Node called "ORDER" matching "FIRST">
<Node matching "FIRST">
<RegexNode called "spaces" matching " ">
<RegexNode called "description" matching "something cool">
但是多行提出问题,我无法根据上面的链接解决问题,print(grammar.parse(multiline_text))
给出了:
---------------------------------------------------------------------------
IncompleteParseError Traceback (most recent call last)
<ipython-input-123-c346891dc883> in <module>()
----> 1 print(grammar.parse(multiline_text))
/Users/me/anaconda3/lib/python3.6/site-packages/parsimonious/grammar.py in parse(self, text, pos)
121 """
122 self._check_default_rule()
--> 123 return self.default_rule.parse(text, pos=pos)
124
125 def match(self, text, pos=0):
/Users/me/anaconda3/lib/python3.6/site-packages/parsimonious/expressions.py in parse(self, text, pos)
110 node = self.match(text, pos=pos)
111 if node.end < len(text):
--> 112 raise IncompleteParseError(text, node.end, self)
113 return node
114
IncompleteParseError: Rule 'bin' matched in its entirety, but it didn't consume all the text. The non-matching portion of the text begins with '
cool
SECOND' (line 1, column 23).
这是我试过的一件不起作用的事情:
grammar2 = Grammar(
"""
bin = ORDER spaces description newline
ORDER = 'FIRST' / 'SECOND'
spaces = ~'\s*'
description = ~'[A-z0-9 \n]*'
newline = ~r'#[^\r\n]*'
""")
print(grammar2.parse(multiline_text))
(从211行堆栈跟踪中截断):
ERROR:root:An unexpected error occurred while tokenizing input
The following traceback may be corrupted or invalid
The error message is: ('EOF in multi-line string', (1, 4))
---------------------------------------------------------------------------
SyntaxError Traceback (most recent call last)
...
VisitationError: SyntaxError: EOL while scanning string literal (<unknown>, line 1)
Parse tree:
<Node called "spaceless_literal" matching "'[A-z0-9
]*'"> <-- *** We were here. ***
<RegexNode matching "'[A-z0-9
]*'">
答案 0 :(得分:3)
看起来你需要在语法中重复bin元素:
onPostExecute()
你可以解析像:
这样的东西grammar = Grammar(
r"""
one = bin +
bin = ORDER spaces description newline
ORDER = 'FIRST' / 'SECOND'
newline = ~"\n*"
spaces = ~"\s*"
description = ~"[A-z0-9 ]*"i
""")