Filter expression examples
Below are examples of Java expressions that you can use to filter data in the Condition (Java expression) option.
Filters a string that contains white space:
.contains(" ");
Filters a string that is identical to a constant string:
.equals("Positive");
Filters a Boolean value:
Boolean,TRUE
Last updated
Was this helpful?