R/misc.R
title_case.Rd
Capitalize the first letter of each word, and convert the remaining string to lower case.
title_case(string)
String to modify.
A character string with the first letter of each word capitalized.
title_case("taylor swift") #> [1] "Taylor Swift" title_case("Taylor Swift") #> [1] "Taylor Swift" title_case("TAYLOR SWIFT") #> [1] "Taylor Swift"