strs_islower {strs} | R Documentation |
Check if string is in lowercase
Description
strs_islower
checks whether each element of a character vector is in
lowercase. It is similar to Python's str.islower()
method.
Usage
strs_islower(string)
Arguments
string |
A character vector to be checked. |
Value
A logical vector of the same length as string
, indicating whether
each element is entirely in lowercase.
See Also
Python str.islower() documentation
Examples
strs_islower("hello")
strs_islower("Hello")
[Package strs version 0.1.0 Index]