Port str upcase (#404)

* Port str upcase

* Switch to to_uppercase to support more characters than only ASCII
This commit is contained in:
onthebridgetonowhere
2021-12-03 03:00:32 +01:00
committed by GitHub
parent c5297d2b64
commit bf82417d52
3 changed files with 112 additions and 0 deletions

View File

@ -13,6 +13,7 @@ mod rpad;
mod starts_with;
mod substring;
mod trim;
mod upcase;
pub use capitalize::SubCommand as StrCapitalize;
pub use case::*;
@ -29,3 +30,4 @@ pub use rpad::SubCommand as StrRpad;
pub use starts_with::SubCommand as StrStartsWith;
pub use substring::SubCommand as StrSubstring;
pub use trim::Trim as StrTrim;
pub use upcase::SubCommand as StrUpcase;