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:
onthebridgetonowhere
2021-11-11 00:11:34 +01:00
committed by GitHub
parent f5b20f0e3b
commit 586c6d9fa8
4 changed files with 223 additions and 0 deletions

View File

@ -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;