| any_grepl | R Documentation |
Shortcut for any(grepl(...)), mostly for consistency.
any_grepl(
x,
pattern,
perl = TRUE,
ignore.case = FALSE,
fixed = FALSE,
quiet = FALSE
)
x |
A character vector. |
pattern, perl, ignore.case, fixed |
As in |
quiet |
(logical, default: |
From version v 1.4.0, any_grepl(a, bb) will be internally
reversed to any_grepl(bb, a) if length(bb) > 1 and length(a) == 1.
any_grepl(c("A_D_E", "K0j"), "[a-z]")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.