mirror of
https://github.com/nushell/nushell.git
synced 2025-07-01 07:00:37 +02:00
Port str find replace (#325)
* Port str find_replace command * Add regex crate as dependency Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
This commit is contained in:
committed by
GitHub
parent
f5b20f0e3b
commit
586c6d9fa8
@ -4,6 +4,7 @@ mod collect;
|
||||
mod contains;
|
||||
mod downcase;
|
||||
mod ends_with;
|
||||
mod find_replace;
|
||||
|
||||
pub use capitalize::SubCommand as StrCapitalize;
|
||||
pub use case::*;
|
||||
@ -11,3 +12,4 @@ pub use collect::*;
|
||||
pub use contains::SubCommand as StrContains;
|
||||
pub use downcase::SubCommand as StrDowncase;
|
||||
pub use ends_with::SubCommand as StrEndswith;
|
||||
pub use find_replace::SubCommand as StrFindReplace;
|
||||
|
Reference in New Issue
Block a user