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