Port str substring command (#388)

* Port str substring command

* Fix issue signaled by cargo fmt
This commit is contained in:
onthebridgetonowhere
2021-12-01 07:42:57 +01:00
committed by GitHub
parent 3916ac4165
commit b8f1fea7fe
3 changed files with 353 additions and 0 deletions

View File

@ -11,6 +11,7 @@ mod lpad;
mod reverse;
mod rpad;
mod starts_with;
mod substring;
pub use capitalize::SubCommand as StrCapitalize;
pub use case::*;
@ -25,3 +26,4 @@ pub use lpad::SubCommand as StrLpad;
pub use reverse::SubCommand as StrReverse;
pub use rpad::SubCommand as StrRpad;
pub use starts_with::SubCommand as StrStartsWith;
pub use substring::SubCommand as StrSubstring;