Nothing
Code
str_to(c(1L, 2L, 3L))
Output
[1] "1, 2, or 3"
Code
str_to(c(1L, 2L, 3L), quote_values = TRUE)
Output
[1] "'1', '2', or '3'"
Code
str_trim(1L)
Condition
Error:
! 'x' must be a character vector of non-NA values.
Code
str_trim(v2, "1")
Condition
Error:
! 'width' must be a non-NA integer of length 1.
Code
str_trim(v2, 2L)
Condition
Error:
! 'width' must be a non-NA numeric value in the range [3, Inf).
Code
str_wrap(1L)
Condition
Error:
! 'x' must be a character vector of non-NA values.
Code
str_wrap(v2, "1")
Condition
Error:
! 'width' must be a non-NA integer of length 1.
Code
str_wrap(v2, 0L)
Condition
Error:
! 'width' must be a non-NA numeric value in the range [1, Inf).
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.