firstup.Rd
Set the first letter of a string vector to captial.
firstup(x)
a string vector.
Nothing
Return a string vector with first letter capital.
Wei Liu
nothing
None
x <- c("good", "Morning") firstup(x) #> [1] "Good" "Morning"