From 45154bbf5962cad9c4e6c76f75d57dd8d740d307 Mon Sep 17 00:00:00 2001 From: Azad <49314270+Akmadan23@users.noreply.github.com> Date: Wed, 8 Mar 2023 20:25:50 +0100 Subject: [PATCH] Add regex match operator (`=~`) to documentation (#702) --- docs/src/expression_language.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/expression_language.md b/docs/src/expression_language.md index 3cb4b52..65c7bc8 100644 --- a/docs/src/expression_language.md +++ b/docs/src/expression_language.md @@ -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.