rx_word_char: Match a word character.

Description Usage Arguments Examples

View source: R/special_characters.R

Description

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

Usage

1
rx_word_char(.data = NULL)

Arguments

.data

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

Examples

1
2
3
4
5
rx_word_char()

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

RVerbalExpressions documentation built on Nov. 6, 2019, 5:08 p.m.