Skip to main content

NOT EQUAL

This operator is case insensitive and returns True if the compared expressions are not equal. If a list is used, only one value needs not to match.

Syntax:  

(EXPRESSION) != (EXPRESSION)

 

Examples and results:  

NOT EQUAL operator examples and results
ExampleResult

Given that @org is "uk" in the access request

resource.@org != "UK" evaluates to False because the operator is case insensitive.

Given that @org is "UK"in the access request

resource.@org != "UK" evaluates to False.

Given that @org is "United Kingdom"in the access request

resource.@org != "UK" evaluates to True.
Given that resource@group is "Sales" in the access request, and user.group contains Sales.resource.@group != "Sales" evaluates to False because user.group contains Sales.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!