blob: 1152deb1e5b37b477b912a84f2f4edb5b7d00267 [file] [log] [blame]
Russ Cox0a38cba2010-03-02 17:17:51 -08001This is the source code repository for RE2, a regular expression library.
2
3For documentation about how to install and use RE2,
Paul Wankadiae69f55c2015-04-05 21:15:16 +10004visit https://github.com/google/re2/.
Russ Cox0a38cba2010-03-02 17:17:51 -08005
6The short version is:
7
8make
9make test
10make install
11make testinstall
12
13Unless otherwise noted, the RE2 source files are distributed
14under the BSD-style license found in the LICENSE file.
Russ Cox507029b2010-03-29 11:19:29 -070015
16RE2's native language is C++.
17An Inferno wrapper is at http://code.google.com/p/inferno-re2/.
18A Python wrapper is at http://github.com/facebook/pyre2/.
19A Ruby wrapper is at http://github.com/axic/rre2/.