upFirst.Rd
Changes the first letter of each word in a string to upper case, keeping selected words in lower case. Words containing at least 2 capital letters are kept as-is.
upFirst(txt, lower = FALSE, alllower = FALSE)
upFirst(c('this and that','that is Beyond question'))
#> [1] "This and That" "That Is Beyond Question"