From d0fe1e12c5601e83abfc9118db412afb11b38051 Mon Sep 17 00:00:00 2001 From: John Pipkin Date: Thu, 22 May 2025 09:25:53 -0500 Subject: [PATCH] Add text --- docs/cse/rules/cse-rules-syntax.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/cse/rules/cse-rules-syntax.md b/docs/cse/rules/cse-rules-syntax.md index 32935102b1..eef31fa863 100644 --- a/docs/cse/rules/cse-rules-syntax.md +++ b/docs/cse/rules/cse-rules-syntax.md @@ -57,6 +57,14 @@ The double ampersand (&&) operator is equivalent to a logical AND operator. A logical OR.  +**Example** + +The following expression returns true if `A` matches `B` or `A` matches `C`: + +`where "A" matches "B" || where "A" matches "C"` + +In Cloud SIEM, both sides of the `||` must be boolean. Other values such as string are not supported when using a logical OR operator. + ### ! The exclamation point (!) function is equivalent to a logical NOT operator.