Skip to content

Commit f62142d

Browse files
authored
Update operators.md (#2054)
1 parent 0f2950c commit f62142d

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

lang-guide/chapters/operators.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,16 @@ Nushell provides support for these bitwise operators:
2828

2929
## Other operators
3030

31-
- `=~` - Regex Match / Contains
32-
- `!~` - Not Regex Match / Not Contains
33-
- `in` - In / Contains (doesn't use regex)
34-
- `not-in` - Not In / Not Contains (doesn't use regex)
31+
- `=~`/`like` - Regex Match / Contains
32+
- `!~`/`not-like` - Not Regex Match / Not Contains
33+
- `in` - Is a member of (doesn't use regex)
34+
- `not-in` - Is not a member of (doesn't use regex)
35+
- `has` - Contains a value of (doesn't use regex)
36+
- `not-has` - Does not contain a value of (doesn't use regex)
3537
- `starts-with` - Starts With
38+
- `not-starts-with` - Does not start with
3639
- `ends-with` - Ends With
40+
- `not-ends-with` - Does not end with
3741
- `and` - And
3842
- `or` - Or
3943

0 commit comments

Comments
 (0)