str_tolower {textTools} | R Documentation |
Calls base::tolower(), which converts letters to lowercase. Only included to point out that base::tolower exists and should be used directly.
Description
Calls base::tolower(), which converts letters to lowercase. Only included to point out that base::tolower exists and should be used directly.
Usage
str_tolower(x)
Arguments
x |
A vector or string. |
Value
x, converted to lowercase.
Examples
str_tolower(c("ALLCAPS", "Some capS"))
[Package textTools version 0.1.0 Index]