Capitalizes the characters Making the first letter uppercase
Examples
x <- c(
"hello world",
"Hello world",
"hello World"
)
capitalize(x)
#> [1] "Hello world" "Hello world" "Hello World"
Capitalizes the characters Making the first letter uppercase
x <- c(
"hello world",
"Hello world",
"hello World"
)
capitalize(x)
#> [1] "Hello world" "Hello world" "Hello World"