rx_tab {RVerbalExpressions} | R Documentation |
Match a tab character.
Description
Match a tab character.
Usage
rx_tab(.data = NULL, inverse = FALSE)
Arguments
.data |
Expression to append, typically pulled from the pipe |
inverse |
Invert match behavior, defaults to |
Details
This function is looks for tabs with the following
expression: \t
Tab character: https://codepoints.net/U+0009
Examples
rx_tab()
rx_tab(inverse = TRUE)
# create an expression
x <- rx_tab()
# create input
string <- "foo\tbar"
# extract match
regmatches(string, regexpr(x, string))
[Package RVerbalExpressions version 0.1.1 Index]