Add regex match operator (=~) to documentation (#702)

This commit is contained in:
Azad 2023-03-08 20:25:50 +01:00 committed by GitHub
parent 8ff4142064
commit 45154bbf59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,7 @@ Supported currently are the following features:
- simple mathematical operations (`+`, `-`, `*`, `/`, `%`)
- comparisons (`==`, `!=`, `>`, `<`, `<=`, `>=`)
- boolean operations (`||`, `&&`, `!`)
- regex match operator (`=~`)
- elvis operator (`?:`)
- if the left side is `""` or a JSON `null`, then returns the right side,
otherwise evaluates to the left side.