This is a set of letter case string helpers.
If you're using Cargo, just add case
to your Cargo.toml
:
toml
[dependencies]
case = "0.0.1"
```rust extern crate case;
use case::CaseExt;
// Snake case operations: asserteq!(&"astringandamiss".tocamel(), "AStringAndAMiss"); asserteq!(&"stringhenryiii".tocamellowercase(), "stringHenryIii"); asserteq!(&"stringingintherain".todashed(), "stringing-in-the-rain");
// Camel case operations: asserteq!(&"martinLutherStringJr".tosnake(), "martinlutherstring_jr");
// Universal operations:
asserteq!(&"stringy string".tocapitalized(), "Stringy string");
// Use universal function call syntax to avoid name collision with str
's unstable methods. These
// two methods will may be deprecated as str.to_uppercase()
and str.to_lowercase()
stabilize.
asserteq!(&CaseExt::touppercase("Buffalo strings"), "BUFFALO STRINGS");
asserteq!(&CaseExt::tolowercase("Attack Of The Stringons"), "attack of the stringons");
```
to_human
/to_human_lowercase
: convert underscores to spaces and optionally capitalize the
first characterto_title
: convert underscores to spaces and capitalize each word's first character