grepv {PTXQC} | R Documentation |
Grep with values returned instead of indices.
Description
The parameter 'value' should not be passed to this function since it is passed internally already.
Usage
grepv(reg, data, ...)
Arguments
reg |
regex param |
data |
container |
... |
other params forwarded to grep() |
Value
values of data which matched the regex
Examples
grepv("x", c("abc", "xyz"))
## --> "xyz"
[Package PTXQC version 1.1.1 Index]