This function simply adds a * to the end of the expression.
rx_none_or_more(.data = NULL, mode = "greedy")
.data | Expression to append, typically pulled from the pipe |
---|---|
mode | Matching mode ( |
rx_none_or_more()#> [1] "*"# create an expression x <- rx() %>% rx_find("a") %>% rx_none_or_more() # create input input <- "aaa" # extract match regmatches(input, regexpr(x, input))#> [1] "aaa"