python - 基本的 pyparsing : parsing expression using "and" and "or"

标签 python nested pyparsing

我已经为获得 pyparsing 而奋斗了几个小时,即使我想做的是基本的。

我想解析基于“or”和“and”的表达式。

效果很好的例子:

s = "((True and True) or (False and (True or False)) or False)"
parens = pyparsing.nestedExpr( '(', ')', content=pyparsing.Word(pyparsing.alphanums) | ' or ' | " and " )
r = parens.parseString(s)[0]
print parens.parseString(s)[0]

打印:

[['True', 'and', 'True'], 'or', ['False', 'and', ['True', 'or', 'False']], 'or', 'False']

现在,我也会这样做,但不要使用“True”和“False”,而是使用任何既不包含“和”或“或”的可能字符串

我期望以下内容能够正常工作:

s = "( c>5 or (p==4 and c<4) )"
parens = pyparsing.nestedExpr( '(', ')', content=pyparsing.Word(' or ') | ' and ' )
print parens.parseString(s)[0]

但这会引发异常:

pyparsing.ParseException: Expected ")" (at char 2), (line:1, col:3)

我一直在努力,主要是尝试更改内容,但没有成功。

有什么想法吗?

----注意

我最终使用了自己的代码而不是 pyparsing。 我想这个问题对于那些仍然对 pyparsing 感兴趣的人仍然有效。

这里是我现在使用的代码:

def parse(s,container):
    my_array = []
    i = 0
    while i < len(s):
        if s[i]!="(" and s[i]!=")":
            my_array.append(s[i])
            i+=1 
        elif s[i]=="(" :
            end_index = parse(s[i+1:],my_array)
            i += end_index+1
        elif s[i]==")":
            container.append(my_array)
            return i+1
    return my_array

例子:

s = "(True and True) or (False and (True or False)) or False"
to_broaden = ("(",")")
for tb in to_broaden : s = s.replace(tb," "+tb+" ")
s = s.split()
print parse(s,[])

结果:

[['True', 'and', 'True'], 'or', ['False', 'and', ['True', 'or', 'False']], 'or', 'False']

最佳答案

我认为这个解决方案是合适的:

s = "( c>5 or (p==4 and c<4) )"

#It's pyparsing.printables without ()
r = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!"#$%&\'*+,-./:;<=>?@[\]^_`{|}~'
parens = pyparsing.nestedExpr( '(', ')',  content=pyparsing.Word(r))
res = parens.parseString(s)[0].asList()
print res#['c>5', 'or', ['p==4', 'and', 'c<4']]

关于python - 基本的 pyparsing : parsing expression using "and" and "or",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23196059/

相关文章:

python - pyparsing:忽略任何不匹配的标记

javascript - button.addEventListener 在嵌套 for 循环中不起作用

python - 在文档字符串公式中使用 '\displaymath' 指令

python - odeint 中的参数数组

python - 理解这个 python 函数的复杂性

php - Elasticsearch。嵌套查询嵌套

python - 嵌套类: Accessing the methods of the outer class from the inner one

python - Pyparsing packrat会降低性能

python - Pyparsing 顺序未知且某些项目可能丢失的字符串

Python 命名管道行为