Capitalizes the first letter of every word
capitalize_words(words, lowercase_of = TRUE)
A string or vector of strings with words you want capitalized
If TRUE (default), keeps the string " of " to be lowercased as is custom in English writing (e.g. District of Columbia).
The original string with the first letter of each word capitalized
capitalize_words("district of columbia")
#> [1] "District of Columbia"