rx_word_char: Match a word character.

View source: R/special_characters.R

rx_word_charR Documentation

Match a word character.

Description

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

Usage

rx_word_char(.data = NULL)

Arguments

.data

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

Examples

rx_word_char()

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


VerbalExpressions/RVerbalExpressions documentation built on March 27, 2024, 8:20 a.m.