Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
build/ | 12-May-2024 | - | 212 | 167 | ||
doc/ | 12-May-2024 | - | 38,949 | 36,310 | ||
example/ | 12-May-2024 | - | 3,306 | 2,132 | ||
meta/ | 12-May-2024 | - | 18 | 17 | ||
performance/ | 12-May-2024 | - | 1,545 | 1,247 | ||
src/ | 12-May-2024 | - | 5,463 | 4,455 | ||
test/ | 12-May-2024 | - | 10,928 | 8,604 | ||
tools/generate/ | 12-May-2024 | - | 218 | 175 | ||
CMakeLists.txt | D | 12-May-2024 | 3.4 KiB | 104 | 88 | |
README.md | D | 12-May-2024 | 1.5 KiB | 37 | 22 | |
index.html | D | 12-May-2024 | 558 | 16 | 13 | |
readme.txt | D | 12-May-2024 | 717 | 22 | 14 |
README.md
1Boost Regex Library 2============================ 3 4The Boost Regex library provides regular expression support for C++, this library is the ancestor to std::regex and still goes beyond 5and offers some advantages to, the standard version. 6 7The full documentation is available on [boost.org](http://www.boost.org/doc/libs/release/libs/regex/index.html). 8 9## Support, bugs and feature requests ## 10 11Bugs and feature requests can be reported through the [Gitub issue tracker](https://github.com/boostorg/regex/issues) 12(see [open issues](https://github.com/boostorg/regex/issues) and 13[closed issues](https://github.com/boostorg/regex/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aclosed)). 14 15You can submit your changes through a [pull request](https://github.com/boostorg/regex/pulls). 16 17There is no mailing-list specific to Boost Regex, although you can use the general-purpose Boost [mailing-list](http://lists.boost.org/mailman/listinfo.cgi/boost-users) using the tag [regex]. 18 19 20## Development ## 21 22Clone the whole boost project, which includes the individual Boost projects as submodules ([see boost+git doc](https://github.com/boostorg/boost/wiki/Getting-Started)): 23 24 git clone https://github.com/boostorg/boost 25 cd boost 26 git submodule update --init 27 28The Boost Regex Library is located in `libs/regex/`. 29 30### Running tests ### 31First, make sure you are in `libs/regex/test`. 32You can either run all the tests listed in `Jamfile.v2` or run a single test: 33 34 ../../../b2 <- run all tests 35 ../../../b2 regex_regress <- single test 36 37
readme.txt
1Copyright (c) 1998-2003 2John Maddock 3 4 * Use, modification and distribution are subject to the 5 * Boost Software License, Version 1.0. (See accompanying file 6 * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 8************************************************************************ 9 10Full instructions for use of this library can be accessed from 11libs/regex/docs/index.html 12 13Installation instructions and library overview is are in 14libs/regex/docs/introduction.html 15 16This library is part of boost (see www.boost.org), the latest version 17of the library is available from the boost web site, or development 18snapshots from the boost cvs repository at 19http://sourceforge.net/project/?group_id=7586 20 21 22