From d5037c0dfe018a3acf706f887f3529558f35caa1 Mon Sep 17 00:00:00 2001 From: Tyarel8 <98483313+Tyarel8@users.noreply.github.com> Date: Sun, 12 Oct 2025 15:54:36 +0200 Subject: [PATCH] Update operators.md --- lang-guide/chapters/operators.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lang-guide/chapters/operators.md b/lang-guide/chapters/operators.md index 614ff64769f..dfa945956ac 100644 --- a/lang-guide/chapters/operators.md +++ b/lang-guide/chapters/operators.md @@ -28,12 +28,16 @@ Nushell provides support for these bitwise operators: ## Other operators -- `=~` - Regex Match / Contains -- `!~` - Not Regex Match / Not Contains -- `in` - In / Contains (doesn't use regex) -- `not-in` - Not In / Not Contains (doesn't use regex) +- `=~`/`like` - Regex Match / Contains +- `!~`/`not-like` - Not Regex Match / Not Contains +- `in` - Is a member of (doesn't use regex) +- `not-in` - Is not a member of (doesn't use regex) +- `has` - Contains a value of (doesn't use regex) +- `not-has` - Does not contain a value of (doesn't use regex) - `starts-with` - Starts With +- `not-starts-with` - Does not start with - `ends-with` - Ends With +- `not-ends-with` - Does not end with - `and` - And - `or` - Or