R/utils_str_to_title.R
str_to_title.Rd
Capitalise first letters of each word to match title format
str_to_title(str)
A string
A capitalised string
https://stackoverflow.com/questions/6364783/capitalize-the-first-letter-of-both-words-in-a-two-word-string
str <- "OSLO - BLINDERN" str_to_title(str) #> [1] "Oslo - Blindern"