grepv {wrapr} | R Documentation |
Return a vector of matches.
Description
Return a vector of matches.
Usage
grepv(
pattern,
x,
...,
ignore.case = FALSE,
perl = FALSE,
fixed = FALSE,
useBytes = FALSE,
invert = FALSE
)
Arguments
pattern |
character scalar, pattern to match, passed to |
x |
character vector to match to, passed to |
... |
not used, forced later arguments to bind by name. |
ignore.case |
logical, passed to |
perl |
logical, passed to |
fixed |
logical, passed to |
useBytes |
logical, passed |
invert |
passed to |
Value
vector of matching values.
See Also
Examples
grepv("x$", c("sox", "xor"))
[Package wrapr version 2.1.0 Index]