Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能帮我在运行时使用 Vici 解析器评估这个表达式。
我已经尝试过其他常用的表达方式,比如 5* VARIABLE kinda 表达方式。但是是否可以使用 VICI 解析器评估条件语句。
示例:IF SAL > 5 THEN 25 ELSE 45 ENDIF
谢谢...
您应该使用 ?: 语法:
SAL > 5 ? 25 : 45
您也可以将其扩展为多个条件:
SAL > 5 ? 25 : SAL > 10 ? 35 : 45