Introduction to re2

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library(re2)

re2: R interface to Google RE2

Overview

re2 package provides pattern matching, extraction, replacement and other string processing operations using Google's RE2 (C++) regular-expression library. The interface is consistent, and similar to stringr.

Why re2?

Regular expression matching can be done in two ways: using recursive backtracking or using finite automata-based techniques.

Perl, PCRE, Python, Ruby, Java, and many other languages rely on recursive backtracking for their regular expression implementations. The problem with this approach is that performance can degrade very quickly. Time complexity can be exponential. In contrast, re2 uses finite automata-based techniques for regular expression matching, guaranteeing linear time execution and a fixed stack footprint. See links to Russ Cox's excellent articles below.

Installation

# Install the released version from CRAN:
install.packages("re2")

# Install the development version from GitHub:
# install.packages("devtools")
devtools::install_github("girishji/re2")

Usage

re2 provides three types of regular-expression functions:

All functions take a vector of strings as argument. Regular-expression patterns can be compiled, and reused for performance.

Here are the primary verbs of re2:

re2_detect(c("barbazbla", "foobar", "foxy brown"), "(foo)|(bar)baz")
re2_count(c("yellowgreen", "steelblue", "maroon"), "e")
re2_subset(c("yellowgreen", "steelblue", "goldenrod"), "ee")
re2_match("ruby:1234 68 red:92 blue:", "(\\w+):(\\d+)")
# Groups can be named:

re2_match(c("barbazbla", "foobar"), "(foo)|(?P<TestGroup>bar)baz")
# Use pre-compiled regular expression:

re <- re2_regexp("(foo)|(bar)baz", case_sensitive = FALSE)
re2_match(c("BaRbazbla", "Foobar"), re)
re2_match_all("ruby:1234 68 red:92 blue:", "(\\w+):(\\d+)")
re2_replace("yabba dabba doo", "b+", "d")
# Use groups in rewrite:

re2_replace("bunny@wunnies.pl", "(.*)@([^.]*)", "\\2!\\1")
re2_replace_all("yabba dabba doo", "b+", "d")
re2_extract_replace("bunny@wunnies.pl", "(.*)@([^.]*)", "\\2!\\1")
re2_split("How vexingly quick daft zebras jump!", " quick | zebras")
re2_locate(c("yellowgreen", "steelblue"), "l(b)?l")
re2_locate_all(c("yellowgreen", "steelblue"), "l")

In all the above functions, regular-expression pattern is vectorized.

Regular-expression pattern can be compiled using re2_regexp(pattern, ...). Here are some of the options:

help(re2_regexp) lists available options.

re2_get_options(regexp_ptr) returns a list of options stored in the compiled regular-expression object.

Regexp Syntax

re2 supports pearl style regular expressions (with extensions like \d, \w, \s, ...) and provides most of the functionality of PCRE -- eschewing only backreferences and look-around assertions.

See RE2 Syntax for the syntax supported by RE2, and a comparison with PCRE and PERL regexps.

For those not familiar with Perl's regular expressions, here are some examples of the most commonly used extensions:

| | | | --- | --- | | "hello (\\w+) world" | \w matches a "word" character | | "version (\\d+)" | \d matches a digit | | "hello\\s+world" | \s matches any whitespace character | | "\\b(\\w+)\\b" | \b matches non-empty string at word boundary | | "(?i)hello" | (?i) turns on case-insensitive matching | | "/\\*(.*?)\\*/" | .*? matches . minimum no. of times possible |

The double backslashes are needed when writing R string literals. However, they should not be used when writing raw string literals:

| | | | --- | --- | | r"(hello (\w+) world)" | \w matches a "word" character | | r"(version (\d+))" | \d matches a digit | | r"(hello\s+world)" | \s matches any whitespace character | | r"(\b(\w+)\b)" | \b matches non-empty string at word boundary | | r"((?i)hello)" | (?i) turns on case-insensitive matching | | r"(/\*(.*?)\*/)" | .*? matches . minimum no. of times possible |

References



Try the re2 package in your browser

Any scripts or data that you put into this service are public.

re2 documentation built on March 29, 2022, 5:05 p.m.