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のような他の通常の式を試しました。しかし、VICIパーサーを使用して条件ステートメントを評価することは可能ですか。
例:IF SAL> 5 THEN 25 ELSE 45 ENDIF
ありがとう...
?: 構文を使用する必要があります。
SAL > 5 ? 25 : 45
これを複数の条件に拡張することもできます。
SAL > 5 ? 25 : SAL > 10 ? 35 : 45