re2ΒΆ

wrapclib.re2.compile (pattern)

Compiles a regular expression pattern, returning a pattern object.

wrapclib.re2.findall (pattern, string, pos = 0, endpos = -1)

Implements method re.findall for re2 in Python.

wrapclib.re2.match (pattern, string)

Tries to apply the pattern at the start of the string, returning a match object, or None if no match was found.

wrapclib.re2.search (pattern, string, pos = 0, endpos = -1)

Scans through string looking for a match to the pattern, returning a match object, or None if no match was found.

wrapclib.re2._re2.Set (self, args, kwargs)

RE2 regexp set objects