File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments