powered by
Match a tab character.
tab(.data = NULL)
Expression to append, typically pulled from the pipe %>%
%>%
This function is looks for tabs with the following expression: \t
\t
Tab character: https://codepoints.net/U+0009
# NOT RUN { tab() # create an expression x <- tab() # create input string <- "foo\tbar" # extract match regmatches(string, regexpr(x, string)) # }
Run the code above in your browser using DataLab