forked from extern/nushell
* Port str find_replace command * Add regex crate as dependency Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
16 lines
375 B
Rust
16 lines
375 B
Rust
mod capitalize;
|
|
mod case;
|
|
mod collect;
|
|
mod contains;
|
|
mod downcase;
|
|
mod ends_with;
|
|
mod find_replace;
|
|
|
|
pub use capitalize::SubCommand as StrCapitalize;
|
|
pub use case::*;
|
|
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;
|