something_but: Match any character(s) except these at least once.
Description
This expression is almost identical to anything_but()
with one major exception, a + is used instead of a *. This
means something_but() expects something whereas
anything_but() expects anything including... nothing!
Usage
something_but(.data = NULL, value)
Arguments
.data
Expression to append, typically pulled from the pipe %>%
# NOT RUN {something_but(value = "abc")
# create an expressionx <- something_but(value = "python")
grepl(x, "R") # should be truegrepl(x, "py") # should be false# }