Available operators
Use this table to view the operators that are used for advanced AccessProfiles.
| Operator | Right side | Description |
|---|---|---|
| = | Numeric, String | Exact comparison. For strings, the comparison is not case-sensitive |
| ~ | String | Regex comparison, case-sensitive |
| # | String | Regex comparison, not case-sensitive |
| != | Numeric | Not equal |
| !~ | String | Not equal of regex comparison, case-sensitive |
| !# | String | Not equal of regex comparison, not case-sensitive |
| & | Numeric | Binary AND |
| !& | Numeric | Not equal of binary AND |
| | | Numeric | Binary OR (NOT SUPPORTED IN THE CURRENT VERSION) |
| %% | Literal | The predefined literal between the two %s is translated to a numeric value |
| and | Logical | Logical and of two Boolean |
| or | Logical | Logical or of two Boolean |