perl(object)ignore.case(object)
fixed(object)
partial(object)
exact(object)
Match modifiers control how a search pattern is matched against the search target. They can be applied to either the pattern or target. Modifiers applied to the search pattern take priority. If
ignore.case performs case insensitive matching against
the names of the target. ignore.case is incompatible with
fixed. Application of ignore.case overrides previous calls to
fixed.perl performs matches against the targets names using
PCREs. perl is incompatible with
fixed. Application of perl overrides previous calls to
fixed.fixed performs a fixed string match instead of using a
regular expression. This can yield substantial speed ups, if regular
expression matching is not needed. Fixed mathcing requires that the search
target contains the search string. For exact matching of the search
string see exact.fixed is incompatible with
perl and ignore.case. Application of fixed overrides
previous calls to the others.
fixedexact, clears all match modifiers and resets the
R's normal exact matching to the target's names.It is incompatible with all other match modifiers. Setting exact
clears other match modifiers to FALSE.
See
extract
fixed
ignore.case
perl