strs_islower | R Documentation |
strs_islower
checks whether each element of a character vector is in
lowercase. It is similar to Python's str.islower()
method.
strs_islower(string)
string |
A character vector to be checked. |
A logical vector of the same length as string
, indicating whether
each element is entirely in lowercase.
Python str.islower() documentation
strs_islower("hello")
strs_islower("Hello")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.