strs_isalpha | R Documentation |
strs_isalpha
checks whether each element of a character vector contains
only alphabetical characters. It is similar to Python's str.isalpha()
method.
strs_isalpha(string)
string |
A character vector to be checked. |
A logical vector of the same length as string
, indicating whether
each element contains only alphabetical characters.
Python str.isalpha() documentation
strs_isalpha("hello")
strs_isalpha("hello123")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.