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:
Example | Result |
---|---|
Given that @org = "united States" in the access request | resource.@org == "United States" evaluates to False because the operator is case sensitive. |
Given that @org = "United States"in the access request | resource.@org == "United States" evaluates to True. |
Given that @org = "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!