First letter to uppercase, the rest to lowercase. And other common alternatives.
use capitalize::Capitalize;
assert_eq!("hello ✨ world".capitalize(), "Hello ✨ world");
Behavior is like Python's str.capitalize
, read capitalize
reference for details.