- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要使用pyparsing来解析它:iif(condition,value if true,value if false)
,但是这种三元比较应该有另一个比较,我的意思是:
`iif(iif(condition1,value1,value2)>iif(condition2,value1,value2),value3,value4)`
我发现了这个:
integer = Word(nums)
variable = Word(alphas, alphanums)
boolLiteral = oneOf("true false")
operand = boolLiteral | variable | integer
comparison_op = oneOf("== <= >= != < >")
QM,COLON = map(Literal,"?:")
expr = infixNotation(operand,
[
(comparison_op, 2, opAssoc.LEFT),
((QM,COLON), 3, opAssoc.LEFT),
])
它能够解析这个:expr.parseString("(x==1? true: (y == 10? 100 : 200) )")
但我无法修改此代码以满足我的需要。我怎样才能实现这个目标?
更新
感谢 Paul 先生,我想出了这个解决方案:
arith_expr = Forward()
iif = CaselessKeyword("iif")
open = Literal("(")
close = Literal(")")
var_name = pyparsing_common.identifier()
fn_call = Group(iif + open - Group(Optional(delimitedList(arith_expr))) + close)
arith_operand = fn_call | num
rel_comparison_operator = oneOf("< > <= >=")
eq_comparison_operator = oneOf("== !=")
plus_minus_operator = oneOf("+ -")
mult_div_operator = oneOf("* / %")
arith_expr <<= infixNotation(arith_operand,
[
# add other operators here - in descending order of precedence
# http://www.tutorialspoint.com/cprogramming/c_operators_precedence.htm
('-', 1, opAssoc.RIGHT),
(mult_div_operator, 2, opAssoc.LEFT,),
(plus_minus_operator, 2, opAssoc.LEFT,),
(rel_comparison_operator, 2, opAssoc.LEFT,),
(eq_comparison_operator, 2, opAssoc.LEFT,),
]
)
我正在使用我以前的一些规则。现在我投票结束这篇文章。
最佳答案
正如 @sepp2k 在他的评论中提到的,您尝试解析的字符串不是中缀表示法,尽管您最终可能会用作中缀表示法的操作数。并且传递给 iif 的参数本身可能是中缀表示法表达式。因此中缀表示法肯定会成为该解析器的一部分,但它不会是解析您的 iif
函数调用的部分。
这是函数调用在 pyparsing 中的样子:
fn_call = pp.Group(var_name + LPAREN - pp.Group(pp.Optional(pp.delimitedList(arith_expr))) + RPAREN)
用于定义算术表达式的操作数本身可以包含函数调用,因此解析器的递归将要求您使用 pyparsing 的 Forward 类。
arith_expr = pp.Forward()
这将允许您在完全定义 arith_expr
的外观之前在其他子表达式中使用 arith_expr
(就像我们刚刚在 fn_call 中所做的那样)。
言归正传,这是一个用于解析 iif
函数的最小解析器:
import pyparsing as pp
# for recursive infix notations, or those with many precedence levels, it is best to enable packrat parsing
pp.ParserElement.enablePackrat()
LPAREN, RPAREN = map(pp.Suppress, "()")
arith_expr= pp.Forward()
var_name = pp.pyparsing_common.identifier()
integer = pp.pyparsing_common.integer()
fn_call = pp.Group(var_name + LPAREN - pp.Group(pp.Optional(pp.delimitedList(arith_expr))) + RPAREN)
arith_operand = fn_call | var_name | integer
rel_comparison_operator = pp.oneOf("< > <= >=")
eq_comparison_operator = pp.oneOf("== !=")
plus_minus_operator = pp.oneOf("+ -")
mult_div_operator = pp.oneOf("* / %")
arith_expr <<= pp.infixNotation(arith_operand,
[
# add other operators here - in descending order of precedence
# http://www.tutorialspoint.com/cprogramming/c_operators_precedence.htm
(mult_div_operator, 2, pp.opAssoc.LEFT,),
(plus_minus_operator, 2, pp.opAssoc.LEFT,),
(rel_comparison_operator, 2, pp.opAssoc.LEFT,),
(eq_comparison_operator, 2, pp.opAssoc.LEFT,),
]
)
使用 runTests,我们可以针对一些测试用例进行尝试:
tests = """\
cos(60)
sqrt(1 - sin(60) * sin(60))
divmod(a, 100)
iif(iif(condition1,value1,value2)>iif(condition2,value1,value2),value3,value4)
"""
arith_expr.runTests(tests)
打印:
cos(60)
[['cos', [60]]]
[0]:
['cos', [60]]
[0]:
cos
[1]:
[60]
sqrt(1 - sin(60) * sin(60))
[['sqrt', [[1, '-', [['sin', [60]], '*', ['sin', [60]]]]]]]
[0]:
['sqrt', [[1, '-', [['sin', [60]], '*', ['sin', [60]]]]]]
[0]:
sqrt
[1]:
[[1, '-', [['sin', [60]], '*', ['sin', [60]]]]]
[0]:
[1, '-', [['sin', [60]], '*', ['sin', [60]]]]
[0]:
1
[1]:
-
[2]:
[['sin', [60]], '*', ['sin', [60]]]
[0]:
['sin', [60]]
[0]:
sin
[1]:
[60]
[1]:
*
[2]:
['sin', [60]]
[0]:
sin
[1]:
[60]
divmod(a, 100)
[['divmod', ['a', 100]]]
[0]:
['divmod', ['a', 100]]
[0]:
divmod
[1]:
['a', 100]
iif(iif(condition1,value1,value2)>iif(condition2,value1,value2),value3,value4)
[['iif', [[['iif', ['condition1', 'value1', 'value2']], '>', ['iif', ['condition2', 'value1', 'value2']]], 'value3', 'value4']]]
[0]:
['iif', [[['iif', ['condition1', 'value1', 'value2']], '>', ['iif', ['condition2', 'value1', 'value2']]], 'value3', 'value4']]
[0]:
iif
[1]:
[[['iif', ['condition1', 'value1', 'value2']], '>', ['iif', ['condition2', 'value1', 'value2']]], 'value3', 'value4']
[0]:
[['iif', ['condition1', 'value1', 'value2']], '>', ['iif', ['condition2', 'value1', 'value2']]]
[0]:
['iif', ['condition1', 'value1', 'value2']]
[0]:
iif
[1]:
['condition1', 'value1', 'value2']
[1]:
>
[2]:
['iif', ['condition2', 'value1', 'value2']]
[0]:
iif
[1]:
['condition2', 'value1', 'value2']
[1]:
value3
[2]:
value4
关于python - pyparsing如何使用infixNotation来表示iif(cond, if true, if false),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56408430/
我正在处理一个庞大的 javascript 代码库,我正试图对其进行重组。我不是真正的专家,我只是开始研究良好的 JavaScript 编码实践。所以,我想做的一件事是将所有代码划分为模块。在这种特殊
这个问题在这里已经有了答案: How does an IIFE's being called immediately prevent it from polluting global scope?
我对 javascript 中的以下代码感到困惑。 var x=(function(){ var customObject = function(){}; customObject.proto
我的图书馆是一个像这样的 IIFE: (function () { win.global = global; }()); 在这个库中,我将我的代码组织成模块,这些模块看起来也像这样: var
base.html 文件中有一些逻辑。我想让它对应的 js 文件更简单,并把一些功能放在一边。 有没有办法访问 IIFE 内部的变量(main.js) 来自另一个 (additional.js)? b
为什么这个函数运行时没有用返回值初始化全局XYZ? "use strict"; XYZ = (function(){ var obj = {'a':1,'b':2,'c':3}; co
最近,当我试图了解更多有关 JavaScript 中的 IIFE 和模块的信息时我想到了一个问题,即 IIFE 如何在不立即制作模块的情况下制作模块调用该函数不会使其成为一个模块.. 任何人都可以与我
这个问题在这里已经有了答案: Are 'Arrow Functions' and 'Functions' equivalent / interchangeable? (4 个答案) 关闭 6 年前。
用法:IIF(条件表达式,为真时返回值,为假时返回值) <% Function IIf(bExp1, sVal1, 
我正在使用一些 javascript 函数来模拟 require 功能,例如: // We set up an object that will include all the public modu
我有一个工作代码循环遍历数组的行,然后将值存储到另一个数组中。实际上代码没有问题,但我正在努力提高我的技能并学习新技能 这是代码 Sub Test() Dim a, i As Long, j
我想使用来自 RxJS 的 iif 实用程序有条件地调度一些操作。问题是即使测试函数返回 false,也会调用 iif 的第二个参数。这会引发错误并且应用程序立即崩溃。我对 RxJS 的功能不熟悉,所
我想产生结果: table name: HWData policy number: number of residents: factor: 100
我是 JS 的新手。如果这个问题太天真了,请原谅我。 我正在使用这样的 IIFE: var App = (function() { var test = ''; var init =
(function (w, d, u) { /* Variable Conventions _*VAR*_ is html or class text*/ var wl = '^\\/
在我的服务器端页面上,我有一段旧脚本,我想修改它以在打开确认窗口之前测试字段是否为空。这就是我尝试的方法,添加 $(#hdfldRecId) 因为如果此字段为空,我不希望打开确认。 scrip
我正在尝试在 Microsoft SQL Server 2008 R2 中使用它: SET @SomeVar = @SomeOtherVar + IIF(@SomeBool, 'value whe
在编写 IIF 语句、表和下面给出的语句时出现错误。 陈述: SELECT IIF(EMP_ID=1,'True','False') from Employee; table : CREATE TAB
我正在阅读 article关于 IIFE,但认为它带来的主要值(value)是它为变量创建了隐私,在下面的代码中,如果将“i”放在 IIFE 中,则无法更改。但是命名空间呢?鉴于它们都在“计数器”范围
如何在 PowerShell 中创建带有内联 If 的语句(IIf,另请参阅: Immediate if 或 ternary If )? 如果您也认为这应该是 native PowerShell 函数
我是一名优秀的程序员,十分优秀!