sf_tolower {stringfish}R Documentation

sf_tolower

Description

A function converting a string to all lowercase

Usage

sf_tolower(x)

Arguments

x

A character vector

Details

Note: the function only converts ASCII characters.

Value

A stringfish vector where all uppercase is converted to lowercase

See Also

tolower

Examples

if(getRversion() >= "3.5.0") {
x <- LETTERS
sf_tolower(x)
}

[Package stringfish version 0.16.0 Index]