nushell/crates/nu-command/src/strings
A. Taha Baki c01f2ee0e9
str-expand: new capability, empty collection item (#9750)
I added a new capability to `bracoxide` which is for `brace expansion`
(it's almost like bash brace expressions).

Anyway, this change adds this capability:

`A{,B,C} | str expand`, returns:

```md
- A
- AB
- AC
```


`A{B,,C} | str expand`, returns:

```md
- AB
- A
- AC
```

`A{B,C,} | str expand`, returns:

```md
- AB
- AC
- A
```

Updated examples, according to the new feature.
2023-07-20 18:51:25 -05:00
..
encode_decode REFACTOR: move the 0% commands to nu-cmd-extra (#9404) 2023-07-06 08:31:31 -07:00
split Input output checking (#9680) 2023-07-14 15:20:35 +12:00
str_ str-expand: new capability, empty collection item (#9750) 2023-07-20 18:51:25 -05:00
char_.rs Revert numberlike parsing restriction (#8845) 2023-04-12 05:21:31 +12:00
detect_columns.rs add the ability to combine columns with detect columns (#9511) 2023-06-23 16:19:08 -05:00
mod.rs REFACTOR: move the 0% commands to nu-cmd-extra (#9404) 2023-07-06 08:31:31 -07:00
parse.rs Input output checking (#9680) 2023-07-14 15:20:35 +12:00
size.rs Box ShellError in Value::Error (#8375) 2023-03-12 09:57:27 +01:00