case

This is a set of letter case string helpers.

Installation

If you're using Cargo, just add case to your Cargo.toml:

toml [dependencies] case = "1.0.0"

Usage

```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(), "martinlutherstringjr"); assert!(&"martinLutherStringJr".iscamel_lowercase());

// Universal operations: asserteq!(&"stringy string".tocapitalized(), "Stringy string"); assert!(&"Stringy string".is_capitalized()); ```

To-do