Skip to main content

to_pascal_case

Function to_pascal_case 

pub fn to_pascal_case(s: &str) -> String
Expand description

Common key transformation: convert snake_case to PascalCase.

ยงExamples

use noyalib::with::singleton_map_with::to_pascal_case;

assert_eq!(to_pascal_case("get_request"), "GetRequest");
assert_eq!(to_pascal_case("http_server"), "HttpServer");
assert_eq!(to_pascal_case("AlreadyPascal"), "Alreadypascal");