...
Operator | Description | Applies To |
---|---|---|
== | Equals | All types |
!=Not | EqualsDoes not equal | All types |
> | Greater than | All types |
< | Less than | All types |
>= | Greater than or equal to | All types |
<= | Less than or equal to | All types |
@= | Contains | All types |
_= | Starts with | String |
!@= | Does not Containscontain | String |
!_= | Does not Starts starts with | String |
@=* | Case-insensitive Containscontains | String |
_=* | Case-insensitive Starts starts with | String |
==* | Case-insensitive Equalsequals | String |
!=* | Case-insensitive Not equalsdoes not equal | String |
!@=* | Case-insensitive Does does not Containscontain | String |
!_=* | Case-insensitive Does does not Starts start with | String |
Filtering examples
...