| wildcards {rex} | R Documentation |
Wildcards
Description
Wildcards
Usage
zero_or_more(..., type = c("greedy", "lazy", "possessive"))
one_or_more(..., type = c("greedy", "lazy", "possessive"))
maybe(..., type = c("greedy", "lazy", "possessive"))
Arguments
... |
|
type |
the type of match to perform. There are three match types
|
Functions
-
zero_or_more: match...zero or more times. -
one_or_more: match...one or more times. -
maybe: match...zero or one times.
See Also
Other rex:
%or%(),
capture(),
character_class(),
counts,
group(),
lookarounds,
not(),
rex(),
shortcuts
[Package rex version 1.2.1 Index]