lowerCase: Case conversion

Description Usage Arguments Value See Also Examples

Description

Convert text to lower or upper case.

Usage

1
2

Arguments

x

a character string.

Value

a character string coerced to the specified case.

See Also

casefold, tolower, toupper.

Examples

1
2
3
x <- "A dog and a cat"
lowerCase(x)
upperCase(x)

Example output

[1] "a dog and a cat"
[1] "A DOG AND A CAT"

splus2R documentation built on May 2, 2019, 5:24 p.m.

Related to lowerCase in splus2R...