lowerCase.Rd
Convert text to lower or upper case.
lowerCase(x) upperCase(x)
a character string.
a character string coerced to the specified case.
casefold, tolower, toupper.
casefold
tolower
toupper
x <- "A dog and a cat" lowerCase(x) #> [1] "a dog and a cat" upperCase(x) #> [1] "A DOG AND A CAT"