Make the first alphabet of strings uppercase
firstUp(str)
A vector of the same length, with the first alphabet in uppercase
firstUp('test string')
#> [1] "Test string"
firstUp(strsplit('many many years ago', ' ')[[1]])
#> [1] "Many" "Many" "Years" "Ago"