Nothing
library(testthat)
library(NUSS)
test_that("igrepl matches patterns in string correctly", {
expect_equal(
NUSS::igrepl(c("today",
"b.* fox",
"jumps over",
"vigorous"),
"The quick brown fox jumps over the lazy dog", FALSE),
c(FALSE, TRUE, TRUE, FALSE))
expect_equal(
NUSS::igrepl(c("today",
"brown fox",
"jumps over",
"vigorous"),
"The quick brown fox jumps over the lazy dog", TRUE),
c(FALSE, TRUE, TRUE, FALSE))
})
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.