# R character classes
alnum()
alpha()
blank()
cntrl()
digit()
graph()
lower()
printable()
punct()
space()
upper()
hex_digit()
# Generic classes
any_char()
dgt()
wrd()
spc()
# Generic negated classes
not_dgt()
not_wrd()
not_spc()
# Non-locale-specific classes
ascii_digit()
ascii_lower()
ascii_upper()
# ISO 8601 date-time classes
iso_date()
iso_time()
iso_datetime()
# Roman numerals
roman()
#Grouping and repetition
digit(char_class = FALSE)
digit(3)
digit(3, 5)
digit(0)
digit(1)
digit(0, 1)
Run the code above in your browser using DataLab