Description Usage Arguments Value References See Also Examples
Return TRUE
if all characters in the string are alphanumeric and there is at
least one character, FALSE
otherwise.
1 |
str |
A character vector. |
A logical vector.
https://docs.python.org/3/library/stdtypes.html#str.isalnum
pystr_isalpha
, pystr_isnumeric
1 2 3 4 | pystr_isalnum("abc")
pystr_isalnum("abc123")
pystr_isalnum("abc123!")
pystr_isalnum(c("one", "2", "three!"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.