pub fn camel_case_with_limit<T: AsRef<str>>(t: T, limit: usize) -> String
Expand description

Formats the input string as a camel case name with a limit on the length.

Examples

assert_eq!(reword::camel_case_with_limit("Even Olsson Rogstadkjærnet", 25), "evenORogstadkjærnet");