0

如何在 GREL if 语句中使用“或”?

我想构建这样的东西

if(contains(value, "this") OR contains(value, "that"), True, False) 
4

1 回答 1

0

这对我有用

if(or(contains(value, "this"), contains(value, "that")), True, False)

于 2019-09-14T17:28:31.337 回答