Learn R Programming

thisutils (version 0.0.5)

capitalize: Capitalizes the characters Making the first letter uppercase

Description

Capitalizes the characters Making the first letter uppercase

Usage

capitalize(x, force_tolower = FALSE)

Arguments

x

A vector of character strings to be capitalized.

force_tolower

Whether to force the remaining letters to be lowercase.

Examples

Run this code
x <- c(
  "hello world",
  "Hello world",
  "hello World"
)
capitalize(x)

Run the code above in your browser using DataLab