R/fct_utils.R
title_case.Rd
Convert sentence to upper case to capital words
Adapted from the base R toupper() function help page.
title_case(x)
Character string.
A character string.
if (FALSE) { # \dontrun{ title_case("this will be converted to upper case") # [1] "This Will Be Converted To Upper Case" } # }