mirror of
https://github.com/nushell/nushell
synced 2024-11-15 09:27:08 +00:00
81abb17b38
# Description This change adds a new flag to the `str replace` command: `--multiline`, `-m`. This flag will automatically add the multiline regex flag `(?m)` to the beginning of the supplied regex, allowing for the `^` and `$` regex characters to match the beginnings and ends of lines, respectively. The main advantage of this addition is to make `str replace` more closely match sed's default behavior of performing matches per-line with a simple cli flag as opposed to forcing the user to add the {somewhat clunky) regex flag themselves. This could be an especially valuable addition since [`str replace` is listed as an alternative to sed in the official documentation](https://www.nushell.sh/book/coming_from_bash.html). With this change, the following two commands would be functionally equivalent: ```bash # bash printf "non-matching line\n123. one line\n124. another line\n" | sed -r 's/^[0-9]+\. //' ``` ```bash # nu "non-matching line\n123. one line\n124. another line\n" | str replace -am '^[0-9]+\. ' '' ``` both producing the following output: ``` non-matching line one line another line ``` # User-Facing Changes 1. Adds a new flag to the `str replace` command: `--multiline`, `-m`. # Tests + Formatting I have update the unit tests to test this flag. <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect -A clippy::result_large_err` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass - `cargo run -- crates/nu-std/tests/run.nu` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. --> I will submit a PR for all relevant documentation changes as soon as this PR is approved. |
||
---|---|---|
.. | ||
assets | ||
src | ||
tests | ||
Cargo.toml | ||
LICENSE |