| sf_tolower {stringfish} | R Documentation |
A function converting a string to all lowercase
sf_tolower(x)
x |
A character vector |
Note: the function only converts ASCII characters.
A stringfish vector where all uppercase is converted to lowercase
tolower
x <- LETTERS sf_tolower(x)