R/xU.R

Defines functions xU

Documented in xU

# capitalize (uppercase) the first letter of a word
xU <- function(x) {

  x <- paste(toupper(substr(x,1,1)), substr(x,2,nchar(x)), sep="")

  return(x)

}

Try the lessR package in your browser

Any scripts or data that you put into this service are public.

lessR documentation built on June 23, 2024, 1:06 a.m.