View source: R/special_characters.R
rx_space | R Documentation |
Matches a space character.
rx_space(.data = NULL, inverse = FALSE)
.data |
Expression to append, typically pulled from the pipe |
inverse |
Invert match behavior, defaults to |
# match space, default
rx_space()
# dont match space
rx_space(inverse = TRUE)
# create an expression
x <- rx_space()
# create input
string <- "1 apple\t"
# extract match
regmatches(string, regexpr(x, string))
# extract no whitespace by inverting behavior
y <- rx_space(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.