View source: R/special_characters.R
rx_punctuation | R Documentation |
Matches punctuation characters only:
! \" # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~
.
rx_punctuation(.data = NULL, inverse = FALSE)
.data |
Expression to append, typically pulled from the pipe |
inverse |
Invert match behavior, defaults to |
rx_punctuation()
rx_punctuation(inverse = TRUE)
# create an expression
x <- rx_punctuation()
# create input
string <- 'Apple 1!'
# extract match
regmatches(string, gregexpr(x, string))
# dont extract punctuation
y <- rx_punctuation(inverse = TRUE)
regmatches(string, gregexpr(y, string))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.