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