# NOT RUN {
with_any_case()
# case insensitive
x <- find(value = "abc") %>%
with_any_case()
# case sensitive
y <- find(value = "abc") %>%
with_any_case(enable = FALSE)
grepl(x, "ABC") # should be true
grepl(y, "ABC") # should be false
# }
Run the code above in your browser using DataLab