View source: R/is_one_string.R
is_one_string | R Documentation |
Determines if the argument is one string
is_one_string(x)
x |
the object to be determined of if it is one string |
TRUE if the argument is one string, FALSE otherwise
Richèl J.C. Bilderbeek
check_empty_beautier_folder()
# TRUE
is_one_string("This is one string")
# FALSE
is_one_string(NULL)
is_one_string(NA)
is_one_string(Inf)
is_one_string(314)
is_one_string(0)
is_one_string(-314)
is_one_string(3.14)
is_one_string(c("a", "b"))
is_one_string(is_one_string)
is_one_string(c())
is_one_string(c(1, 2))
check_empty_beautier_folder()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.