R/islower.R
strs_islower.Rd
strs_islower checks whether each element of a character vector is in lowercase. It is similar to Python's str.islower() method.
strs_islower
str.islower()
strs_islower(string)
A character vector to be checked.
A logical vector of the same length as string, indicating whether each element is entirely in lowercase.
string
Python str.islower() documentation
strs_islower("hello") #> [1] TRUE strs_islower("Hello") #> [1] FALSE