powered by
Identify a specific pattern exactly.
rx_find(.data = NULL, value)
Expression to append, typically pulled from the pipe %>%
%>%
Exact expression to match
Capturing group: https://www.regular-expressions.info/brackets.html
Stack Overflow: https://stackoverflow.com/questions/3512471
rx_find(value = "apple") # create expression x <- rx_find(value = "apples") grepl(x, "apple") # should be false grepl(x, "apples") # should be true
Run the code above in your browser using DataLab