rx_something_but {RVerbalExpressions} | R Documentation |
Match any character(s) except these at least once.
Description
This expression is almost identical to rx_anything_but()
with one major exception, a +
is used instead of a *
. This
means rx_something_but()
expects something whereas
rx_anything_but()
expects anything including... nothing!
Usage
rx_something_but(.data = NULL, value, mode = "greedy")
Arguments
.data |
Expression to append, typically pulled from the pipe |
value |
Expression to optionally match |
mode |
Matching mode ( |
References
Metacharacters: https://www.regular-expressions.info/characters.html#special
Greedy and Lazy Quantifiers: https://www.regular-expressions.info/repeat.html#greedy
Examples
rx_something_but(value = "abc")
# create an expression
x <- rx_something_but(value = "python")
grepl(x, "R") # should be true
grepl(x, "py") # should be false
[Package RVerbalExpressions version 0.1.1 Index]