R/string_manipulation.R

Defines functions FirstToUpper

# toupper first letter of a short frase
FirstToUpper <- function(x) paste0(toupper(substring(x, 1, 1)), substring(x, 2))
mt1022/Rutils documentation built on May 25, 2019, 10:34 p.m.