py解析问题
现在我刚刚开始使用 pyparsing 来解析简单的后缀表达式。目前,我已经做到了这一点:
from pyparsing import *
integer = Word(nums)
op = Word("+-*/^", max=1)
space = Word(" ")
expr = Word(nums)+space+Word(nums)+space+op
parsed = expr.parseString("3 4 *")
print parsed
但是当我运行它时,它会打印:
Traceback (most recent call last):
File "star_parse.py", line 6, in <module>
parsed = expr.parseString("3 4 *")
File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/pyparsing-1.5.5-py2.6.egg/pyparsing.py", line 1100, in parseString
raise exc
pyparsing.ParseException: Expected W:( ) (at char 2), (line:1, col:3)
我做错了什么?
Right now I have just started to use pyparsing
to parse simple postfix expressions. At the moment, I got this far:
from pyparsing import *
integer = Word(nums)
op = Word("+-*/^", max=1)
space = Word(" ")
expr = Word(nums)+space+Word(nums)+space+op
parsed = expr.parseString("3 4 *")
print parsed
But when I run it, it prints:
Traceback (most recent call last):
File "star_parse.py", line 6, in <module>
parsed = expr.parseString("3 4 *")
File "/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site-packages/pyparsing-1.5.5-py2.6.egg/pyparsing.py", line 1100, in parseString
raise exc
pyparsing.ParseException: Expected W:( ) (at char 2), (line:1, col:3)
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
默认情况下会处理空白。还有方便的
oneOf
:White space is handled by default. There is also the handy
oneOf
:pyparser 会忽略空格。您可以使用 White 类显式测试空白。
然而,您可能正在寻找的表达式是:
http://packages.python .org/pyparsing/pyparsing.pyparsing.White-class.html
White space is ignored by pyparser. You can explicitly test for whitespace by using the White class.
However the expression you are probably looking for is:
http://packages.python.org/pyparsing/pyparsing.pyparsing.White-class.html