Python 如何解析逻辑表达式?

2021-03-27 23:20:23 +08:00
 al0ne
例如我输入一个条件 status:200 && port:333 这种逻辑表达式,有没有现成的库可以调用?
2592 次点击
所在节点    Python
7 条回复
zhuangzhuang1988
2021-03-27 23:32:19 +08:00
antlr
agagega
2021-03-27 23:37:37 +08:00
看你的规则,简单的话套几层 split 就行,也就相当于递归下降了
ch2
2021-03-28 00:17:53 +08:00
如果你想解析任何逻辑表达式,推荐用 yacc
逻辑简单代码就少,复杂的也不怕
唯一麻烦的是你得学一下 yacc 语义子程序怎么编写
ch2
2021-03-28 00:22:25 +08:00
比如你这个表达式的形式,可以用四条产生式来概括:
键->几个字母组成的单词,对应语义子程序是把词法分析捕获的单词 token 归约为一个变量
值->几个数字组成的数值,对应语义子程序是把词法分析捕获的数字 token 归约为一个变量
键值对->键:值,对应语义子程序是把当前栈的两个变量合并为一个键值对
表达式->键值对&&键值对,对应语义子程序是把当前栈的两个键值对合并为一个字典
matrix67
2021-03-28 09:22:50 +08:00
YACC/Bison generate table driven parsers, which means the "processing logic" is contained in the parser program's data, not so much in the parser's code. The pay off is that even a parser for a very complex language has a relatively small code footprint.

ANTLR generates recursive descent parsers, which means the "processing logic" is contained in the parser's code, as each production rule of the grammar is represented by a function in the parser's code. The pay off is that it is easier to understand what the parser is doing by reading its code. Also, recursive descent parsers are typically faster than table driven ones.
kkbblzq
2021-03-29 09:13:48 +08:00
如果不怕安全性问题可以直接 eval
al0ne
2021-03-29 10:17:46 +08:00
@zhuangzhuang1988
@agagega
@ch2
@kkbblzq
@matrix67

谢谢几位大佬 我去试试你们说的

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/765783

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX