powered by
Shortcut for any(grepl(...)), mostly for consistency.
any(grepl(...))
any_grepl( x, pattern, perl = TRUE, ignore.case = FALSE, fixed = FALSE, quiet = FALSE )
A character vector.
As in grep.
grep
(logical, default: FALSE) If TRUE, silences any messages.
FALSE
TRUE
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.
v 1.4.0
any_grepl(a, bb)
any_grepl(bb, a)
length(bb) > 1
length(a) == 1
# NOT RUN { any_grepl(c("A_D_E", "K0j"), "[a-z]") # }
Run the code above in your browser using DataLab