Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space WDESIGNER and version 24.0

The following logical operators can be used when defining conditions, for instance on outgoing flows of decisions or in boolean expressions:

OperatorDescription
like evaluate a string against a regex pattern
unlike
<less
<=less or equal
>greater
>=greater or equal
=equal
<>not equal
!=
Tip

In order to negate a boolean value or expression, use the boolean not() function, for instance not(a and b).

Examples

Code Block
none
none
set aBoolean = 2 < 1;
set s = condition (i1 != i2, "abc", "xyz");
rp
Panel
titleRelated Pages: