test_that("unglue_vec works", {
sentences <- c("666 is a number", "foo is a word",
"42 is the answer", "Area 51 is unmatched")
patterns <- c("{number=\\d+} is {what}", "{word=\\D+} is {what}")
expect_equal(unglue_vec(sentences, patterns, 1),
c("666", "foo", "42", NA))
expect_equal(unglue_vec(sentences, patterns, 2),
c("a number", "a word", "the answer", NA))
expect_equal(unglue_vec(sentences, patterns, "word"),
c(NA, "foo", NA, NA))
expect_equal(unglue_vec(sentences, patterns, "number"),
c("666", NA, "42", NA))
expect_equal(unglue_vec(sentences, patterns, "number", convert = TRUE),
c(666, NA, 42, NA))
expect_equal(unglue_vec(sentences, patterns, "number", convert = ~type.convert(., as.is = TRUE)),
c(666, NA, 42, NA))
expect_equal(unglue_vec(sentences, patterns, "number", convert = ~type.convert(., as.is = FALSE)),
c(666, NA, 42, NA))
expect_error(
with_mock(requireNamespace = function(...) FALSE,
unglue_vec(sentences, patterns, "number", convert = ~type.convert(., as.is = FALSE)),
"rlang"))
expect_error(unglue_vec(sentences, patterns, c("number","word")))
expect_equal(unglue_vec(sentences, patterns, 3),
rep(NA_character_,4))
s <- c("random.0.0.word.1.0", "different.0.02.words.15.6", "different.0.1.words.4.2")
expect_equal(
unglue_vec(s, "{=.*?}.{x}.{x}.{=.*?}.{=.*?}.{=.*?}", multiple = ~paste(..., sep = ".")),
c("0.0", "0.02", "0.1"))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.