[−][src]Function inflector::cases::titlecase::to_title_case
pub fn to_title_case(non_title_case_string: &str) -> String
Converts a &str
to Title Case
String
use inflector::cases::titlecase::to_title_case; let mock_string: &str = "Foo bar"; let expected_string: String = "Foo Bar".to_string(); let asserted_string: String = to_title_case(mock_string); assert!(asserted_string == expected_string);
use inflector::cases::titlecase::to_title_case; let mock_string: &str = "FooBar"; let expected_string: String = "Foo Bar".to_string(); let asserted_string: String = to_title_case(mock_string); assert!(asserted_string == expected_string);
use inflector::cases::titlecase::to_title_case; let mock_string: &str = "fooBar"; let expected_string: String = "Foo Bar".to_string(); let asserted_string: String = to_title_case(mock_string); assert!(asserted_string == expected_string);
use inflector::cases::titlecase::to_title_case; let mock_string: &str = "FOO_BAR"; let expected_string: String = "Foo Bar".to_string(); let asserted_string: String = to_title_case(mock_string); assert!(asserted_string == expected_string);
use inflector::cases::titlecase::to_title_case; let mock_string: &str = "foo_bar"; let expected_string: String = "Foo Bar".to_string(); let asserted_string: String = to_title_case(mock_string); assert!(asserted_string == expected_string);
use inflector::cases::titlecase::to_title_case; let mock_string: &str = "foo-bar"; let expected_string: String = "Foo Bar".to_string(); let asserted_string: String = to_title_case(mock_string); assert!(asserted_string == expected_string);