Learn R Programming

RVerbalExpressions (version 0.0.0.9000)

rx_word_char: Match a word character.

Description

Match a word character (a<U+2013>z, A<U+2013>Z, 0<U+2013>9 or _).

Usage

rx_word_char(.data = NULL)

Arguments

.data

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

Examples

Run this code
# NOT RUN {
rx_word_char()

# Same as rx_word()
x <- rx_word_char() %>%
 rx_one_or_more()

# }

Run the code above in your browser using DataLab