regex {stringstatic} | R Documentation |
Control regex matching behavior
Description
Dependency-free drop-in alternative for stringr::regex()
.
Usage
regex(
pattern,
ignore_case = FALSE,
multiline = FALSE,
comments = FALSE,
dotall = FALSE
)
Arguments
pattern |
Pattern to modify behavior. |
ignore_case |
Should case differences be ignored in the match? |
multiline |
If |
comments |
If |
dotall |
If |
Value
An integer vector.
Source
Adapted from the stringr package.
[Package stringstatic version 0.1.2 Index]