rx_with_any_case | R Documentation |
Control case-insensitive matching.
rx_with_any_case(.data = NULL, enable = TRUE)
.data |
Expression to append, typically pulled from the pipe |
enable |
Whether to enable this behavior |
Equivalent to adding or removing the i modifier.
rx_with_any_case()
# case insensitive
x <- rx() %>%
rx_find("abc") %>%
rx_with_any_case()
# case sensitive
y <- rx() %>%
rx_find("abc") %>%
rx_with_any_case(enable = FALSE)
grepl(x, "ABC") # should be true
grepl(y, "ABC") # should be false
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.