c# - Humanize uppercase name with hyphenated last name -
this standard way title case uppercase names using .net humanizer library.
"first m hyphenated-last".transform(to.lowercase, to.titlecase); // result (v1.37.0): "first m hyphenated-last" // desired result: "first m hyphenated-last"
unfortunately character following hyphen lowercase when seems me should uppercase.
anyone have suggestions getting result i'm looking humanizer, or not possible humanizer of v1.37.0?
Comments
Post a Comment