Skip to main content

STRICT EQUAL

This operator is case sensitive and returns True if the compared expressions are exactly equal. The full list does not have to match when a value used in an expression exists in a list.

Syntax:  

(EXPRESSION) == (EXPRESSION)

 

Examples and results:  

STRICT EQUAL operator examples and results
ExampleResult

Given that @org is "united States" in the access request

resource.@org == "United States" evaluates to False because the operator is case sensitive.

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

resource.@org == "United States" evaluates to True.

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

resource.@org == "United States" evaluates to False.

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!