Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
benchlog/ | 12-May-2024 | - | 5,585 | 5,502 | ||
doc/ | 12-May-2024 | - | 987 | 942 | ||
kokoro/ | 12-May-2024 | - | 105 | 71 | ||
lib/git/ | 12-May-2024 | - | 105 | 71 | ||
re2/ | 12-May-2024 | - | 34,203 | 25,567 | ||
util/ | 12-May-2024 | - | 2,959 | 1,949 | ||
.gitattributes | D | 12-May-2024 | 631 | 16 | 15 | |
AUTHORS | D | 12-May-2024 | 399 | 14 | 10 | |
BUILD | D | 12-May-2024 | 5.8 KiB | 281 | 248 | |
BUILD.gn | D | 12-May-2024 | 1.8 KiB | 71 | 67 | |
CMakeLists.txt | D | 12-May-2024 | 4.3 KiB | 159 | 137 | |
CONTRIBUTING.md | D | 12-May-2024 | 130 | 3 | 2 | |
CONTRIBUTORS | D | 12-May-2024 | 1.5 KiB | 42 | 38 | |
LICENSE | D | 12-May-2024 | 1.5 KiB | 28 | 27 | |
Makefile | D | 12-May-2024 | 10.7 KiB | 346 | 261 | |
OAT.xml | D | 12-May-2024 | 5 KiB | 86 | 29 | |
README | D | 12-May-2024 | 1.3 KiB | 39 | 28 | |
README.OpenSource | D | 12-May-2024 | 375 | 10 | 10 | |
WORKSPACE | D | 12-May-2024 | 479 | 16 | 11 | |
bundle.json | D | 12-May-2024 | 846 | 33 | 33 | |
libre2.map | D | 12-May-2024 | 253 | 11 | 10 | |
libre2.symbols | D | 12-May-2024 | 255 | 17 | 16 | |
libre2.symbols.darwin | D | 12-May-2024 | 245 | 13 | 12 | |
re2.pc | D | 12-May-2024 | 220 | 9 | 7 | |
runtests | D | 12-May-2024 | 646 | 34 | 27 | |
testinstall.cc | D | 12-May-2024 | 533 | 25 | 18 | |
ucs2.diff | D | 12-May-2024 | 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
README.OpenSource
1[ 2 { 3 "Name": "re2", 4 "License": "BSD 3-Clause License", 5 "License File": "LICENSE", 6 "Version Number": "2019-12-01", 7 "Upstream URL": "https://github.com/google/re2", 8 "Description": "RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library." 9 } 10]