Skip to contents

Sentence case

Usage

sentenceCase(object, ...)

# S4 method for character
sentenceCase(object)

Arguments

object

Object.

...

Additional arguments.

Value

Modified object.

Note

Updated 2020-01-27.

Examples

x <- c("the quick Brown fox", "using AIC for model selection")
sentenceCase(x)
#> [1] "The quick brown fox"           "Using AIC for model selection"