3 releases (1 stable)

Uses old Rust 2015

1.0.0 Nov 21, 2018
0.1.0 Dec 28, 2016
0.0.1 Jun 1, 2015

#566 in Text processing

Download history 12683/week @ 2023-12-15 7418/week @ 2023-12-22 10546/week @ 2023-12-29 14551/week @ 2024-01-05 15029/week @ 2024-01-12 16283/week @ 2024-01-19 14135/week @ 2024-01-26 12566/week @ 2024-02-02 13619/week @ 2024-02-09 12102/week @ 2024-02-16 13290/week @ 2024-02-23 15013/week @ 2024-03-01 15059/week @ 2024-03-08 14486/week @ 2024-03-15 14619/week @ 2024-03-22 11657/week @ 2024-03-29

58,486 downloads per month
Used in 336 crates (30 directly)

MIT license

8KB
89 lines

case

This is a set of letter case string helpers.

Installation

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

[dependencies]
case = "1.0.0"

Usage

extern crate case;

use case::CaseExt;

// Snake case operations:
assert_eq!(&"a_string_and_a_miss".to_camel(), "AStringAndAMiss");
assert_eq!(&"string_henry_iii".to_camel_lowercase(), "stringHenryIii");
assert_eq!(&"stringing_in_the_rain".to_dashed(), "stringing-in-the-rain");

// Camel case operations:
assert_eq!(&"martinLutherStringJr".to_snake(), "martin_luther_string_jr");
assert!(&"martinLutherStringJr".is_camel_lowercase());

// Universal operations:
assert_eq!(&"stringy string".to_capitalized(), "Stringy string");
assert!(&"Stringy string".is_capitalized());

To-do

  • to_human/to_human_lowercase: convert underscores to spaces and optionally capitalize the first character
  • to_title: convert underscores to spaces and capitalize each word's first character

No runtime deps