Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
benchlog/ | 23-Nov-2023 | - | 255 | 204 | ||
doc/ | 23-Nov-2023 | - | 1,052 | 1,007 | ||
kokoro/ | 23-Nov-2023 | - | 105 | 71 | ||
lib/git/ | 23-Nov-2023 | - | 105 | 71 | ||
re2/ | 23-Nov-2023 | - | 35,101 | 26,264 | ||
util/ | 23-Nov-2023 | - | 2,974 | 1,962 | ||
.gitignore | D | 23-Nov-2023 | 34 | 6 | 5 | |
.travis.yml | D | 23-Nov-2023 | 5.4 KiB | 211 | 206 | |
AUTHORS | D | 23-Nov-2023 | 399 | 14 | 10 | |
BUILD | D | 23-Nov-2023 | 5.8 KiB | 281 | 248 | |
CMakeLists.txt | D | 23-Nov-2023 | 4.2 KiB | 159 | 136 | |
CONTRIBUTING.md | D | 23-Nov-2023 | 130 | 3 | 2 | |
CONTRIBUTORS | D | 23-Nov-2023 | 1.5 KiB | |||
LICENSE | D | 23-Nov-2023 | 1.5 KiB | 28 | 27 | |
Makefile | D | 23-Nov-2023 | 11.2 KiB | 380 | 296 | |
README | D | 23-Nov-2023 | 1.3 KiB | 39 | 28 | |
WORKSPACE | D | 23-Nov-2023 | 479 | 16 | 11 | |
libre2.symbols | D | 23-Nov-2023 | 255 | 17 | 16 | |
libre2.symbols.darwin | D | 23-Nov-2023 | 245 | 13 | 12 | |
re2.pc | D | 23-Nov-2023 | 220 | 9 | 7 | |
runtests | D | 23-Nov-2023 | 646 | 34 | 27 | |
testinstall.cc | D | 23-Nov-2023 | 533 | 25 | 18 | |
ucs2.diff | D | 23-Nov-2023 | 18.8 KiB | 568 | 536 |
README
1This is the source code repository for RE2, a regular expression library. 2 3For documentation about how to install and use RE2, 4visit https://github.com/google/re2/. 5 6The short version is: 7 8make 9make test 10make install 11make testinstall 12 13There is a fair amount of documentation (including code snippets) in 14the re2.h header file. 15 16More information can be found on the wiki: 17https://github.com/google/re2/wiki 18 19Issue tracker: 20https://github.com/google/re2/issues 21 22Mailing list: 23https://groups.google.com/group/re2-dev 24 25Unless otherwise noted, the RE2 source files are distributed 26under the BSD-style license found in the LICENSE file. 27 28RE2's native language is C++. 29 30A C wrapper is at https://github.com/marcomaggi/cre2/. 31An Erlang wrapper is at https://github.com/dukesoferl/re2/ and on Hex (hex.pm). 32An Inferno wrapper is at https://github.com/powerman/inferno-re2/. 33A Node.js wrapper is at https://github.com/uhop/node-re2/ and on NPM (npmjs.com). 34An OCaml wrapper is at https://github.com/janestreet/re2/ and on OPAM (opam.ocaml.org). 35A Perl wrapper is at https://github.com/dgl/re-engine-RE2/ and on CPAN (cpan.org). 36A Python wrapper is at https://github.com/facebook/pyre2/ and on PyPI (pypi.org). 37An R wrapper is at https://github.com/qinwf/re2r/ and on CRAN (cran.r-project.org). 38A Ruby wrapper is at https://github.com/mudge/re2/ and on RubyGems (rubygems.org). 39