Match a word character (a–z, A–Z, 0–9 or _).

rx_word_char(.data = NULL)

Arguments

.data

Expression to append, typically pulled from the pipe %>%

Examples

rx_word_char()
#> [1] "\\w"
# Same as rx_word() x <- rx_word_char() %>% rx_one_or_more()