forked from boostorg/regex
Merge pull request #161 from boostorg/icu_cmake
Update ICU testing and usage.
This commit is contained in:
29
.github/workflows/ci.yml
vendored
29
.github/workflows/ci.yml
vendored
@ -4,7 +4,14 @@
|
|||||||
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
|
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
|
||||||
|
|
||||||
name: CI
|
name: CI
|
||||||
on: [ push, pull_request ]
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
- develop
|
||||||
|
pull_request:
|
||||||
|
release:
|
||||||
|
types: [published, created, edited]
|
||||||
jobs:
|
jobs:
|
||||||
ubuntu-focal:
|
ubuntu-focal:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
@ -27,7 +34,7 @@ jobs:
|
|||||||
- name: Add repository
|
- name: Add repository
|
||||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: sudo apt install g++-9 g++-10 clang-9 clang-10
|
run: sudo apt install g++-9 g++-10 clang-9 clang-10 libicu-dev
|
||||||
- name: Checkout main boost
|
- name: Checkout main boost
|
||||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||||
- name: Update tools/boostdep
|
- name: Update tools/boostdep
|
||||||
@ -78,7 +85,7 @@ jobs:
|
|||||||
- name: Add repository
|
- name: Add repository
|
||||||
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: sudo apt install g++-7 g++-8 clang-7 clang-8
|
run: sudo apt install g++-7 g++-8 clang-7 clang-8 libicu-dev
|
||||||
- name: Checkout main boost
|
- name: Checkout main boost
|
||||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||||
- name: Update tools/boostdep
|
- name: Update tools/boostdep
|
||||||
@ -331,6 +338,8 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: '0'
|
fetch-depth: '0'
|
||||||
|
- name: Install packages
|
||||||
|
run: sudo apt install libicu-dev
|
||||||
- name: Checkout main boost
|
- name: Checkout main boost
|
||||||
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
|
||||||
- name: Update tools/boostdep
|
- name: Update tools/boostdep
|
||||||
@ -352,3 +361,17 @@ jobs:
|
|||||||
cmake ..
|
cmake ..
|
||||||
cmake --build .
|
cmake --build .
|
||||||
cmake --build . --target check
|
cmake --build . --target check
|
||||||
|
rm -rf *
|
||||||
|
echo Standalone configuration
|
||||||
|
cmake -DBOOST_REGEX_STANDALONE=on ..
|
||||||
|
cmake --build .
|
||||||
|
cmake --build . --target check
|
||||||
|
cd ../../cmake_subdir_test_icu && mkdir __build__ && cd __build__
|
||||||
|
cmake ..
|
||||||
|
cmake --build .
|
||||||
|
cmake --build . --target check
|
||||||
|
rm -rf *
|
||||||
|
echo Standalone configuration
|
||||||
|
cmake -DBOOST_REGEX_STANDALONE=on ..
|
||||||
|
cmake --build .
|
||||||
|
cmake --build . --target check
|
||||||
|
@ -13,11 +13,57 @@ add_library(Boost::regex ALIAS boost_regex)
|
|||||||
|
|
||||||
target_include_directories(boost_regex INTERFACE include)
|
target_include_directories(boost_regex INTERFACE include)
|
||||||
|
|
||||||
target_link_libraries(boost_regex
|
option(BOOST_REGEX_STANDALONE "Boost.Regex: Enable Standalone Mode (i.e. no Boost dependencies)")
|
||||||
INTERFACE
|
|
||||||
Boost::config
|
if(NOT BOOST_REGEX_STANDALONE)
|
||||||
Boost::throw_exception
|
|
||||||
Boost::predef
|
target_link_libraries(boost_regex
|
||||||
Boost::assert
|
INTERFACE
|
||||||
)
|
Boost::config
|
||||||
|
Boost::throw_exception
|
||||||
|
Boost::predef
|
||||||
|
Boost::assert
|
||||||
|
)
|
||||||
|
|
||||||
|
else()
|
||||||
|
|
||||||
|
target_compile_definitions(boost_regex
|
||||||
|
INTERFACE BOOST_REGEX_STANDALONE
|
||||||
|
)
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_package(ICU COMPONENTS data i18n uc QUIET)
|
||||||
|
#option(BOOST_REGEX_ENABLE_ICU "Boost.Regex: enable ICU support" ${ICU_FOUND})
|
||||||
|
|
||||||
|
if(ICU_FOUND)
|
||||||
|
|
||||||
|
add_library(boost_regex_icu INTERFACE)
|
||||||
|
add_library(Boost::regex_icu ALIAS boost_regex_icu)
|
||||||
|
|
||||||
|
target_include_directories(boost_regex_icu INTERFACE include)
|
||||||
|
|
||||||
|
if(NOT BOOST_REGEX_STANDALONE)
|
||||||
|
|
||||||
|
target_link_libraries(boost_regex_icu
|
||||||
|
INTERFACE
|
||||||
|
Boost::config
|
||||||
|
Boost::throw_exception
|
||||||
|
Boost::predef
|
||||||
|
Boost::assert
|
||||||
|
)
|
||||||
|
|
||||||
|
else()
|
||||||
|
|
||||||
|
target_compile_definitions(boost_regex_icu
|
||||||
|
INTERFACE BOOST_REGEX_STANDALONE
|
||||||
|
)
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_package(ICU COMPONENTS data i18n uc REQUIRED)
|
||||||
|
|
||||||
|
target_link_libraries(boost_regex_icu INTERFACE ICU::data ICU::i18n ICU::uc)
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Background Information</title>
|
<title>Background Information</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="ref/internals/uni_iter.html" title="Unicode Iterators">
|
<link rel="prev" href="ref/internals/uni_iter.html" title="Unicode Iterators">
|
||||||
<link rel="next" href="background/headers.html" title="Headers">
|
<link rel="next" href="background/headers.html" title="Headers">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Acknowledgements</title>
|
<title>Acknowledgements</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="redist.html" title="Redistributables">
|
<link rel="prev" href="redist.html" title="Redistributables">
|
||||||
<link rel="next" href="history.html" title="History">
|
<link rel="next" href="history.html" title="History">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Test and Example Programs</title>
|
<title>Test and Example Programs</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="thread_safety.html" title="Thread Safety">
|
<link rel="prev" href="thread_safety.html" title="Thread Safety">
|
||||||
<link rel="next" href="futher.html" title="References and Further Information">
|
<link rel="next" href="futher.html" title="References and Further Information">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>FAQ</title>
|
<title>FAQ</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="futher.html" title="References and Further Information">
|
<link rel="prev" href="futher.html" title="References and Further Information">
|
||||||
<link rel="next" href="performance.html" title="Performance">
|
<link rel="next" href="performance.html" title="Performance">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>References and Further Information</title>
|
<title>References and Further Information</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="examples.html" title="Test and Example Programs">
|
<link rel="prev" href="examples.html" title="Test and Example Programs">
|
||||||
<link rel="next" href="faq.html" title="FAQ">
|
<link rel="next" href="faq.html" title="FAQ">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Headers</title>
|
<title>Headers</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="../background.html" title="Background Information">
|
<link rel="prev" href="../background.html" title="Background Information">
|
||||||
<link rel="next" href="locale.html" title="Localization">
|
<link rel="next" href="locale.html" title="Localization">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>History</title>
|
<title>History</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="acknowledgements.html" title="Acknowledgements">
|
<link rel="prev" href="acknowledgements.html" title="Acknowledgements">
|
||||||
</head>
|
</head>
|
||||||
@ -36,6 +36,33 @@
|
|||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h0"></a>
|
<a name="boost_regex.background.history.h0"></a>
|
||||||
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_7_0_0_boost_1_78_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_7_0_0_boost_1_78_0">Boost.Regex-7.0.0
|
||||||
|
(Boost-1.78.0)</a>
|
||||||
|
</h5>
|
||||||
|
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
||||||
|
<li class="listitem">
|
||||||
|
<span class="bold"><strong>Breaking Change:</strong></span> Change \B to be the
|
||||||
|
opposite of \b as per Perl behaviour.
|
||||||
|
</li>
|
||||||
|
<li class="listitem">
|
||||||
|
Change w32_regex_traits.hpp so that windows.h is no longer included.
|
||||||
|
</li>
|
||||||
|
</ul></div>
|
||||||
|
<h5>
|
||||||
|
<a name="boost_regex.background.history.h1"></a>
|
||||||
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_6_0_0_boost_1_77_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_6_0_0_boost_1_77_0">Boost.Regex-6.0.0
|
||||||
|
(Boost-1.77.0)</a>
|
||||||
|
</h5>
|
||||||
|
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
||||||
|
<li class="listitem">
|
||||||
|
Big change to header only library.
|
||||||
|
</li>
|
||||||
|
<li class="listitem">
|
||||||
|
Deprecate C++03 support.
|
||||||
|
</li>
|
||||||
|
</ul></div>
|
||||||
|
<h5>
|
||||||
|
<a name="boost_regex.background.history.h2"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_4_boost_172_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_4_boost_172_0">Boost.Regex-5.1.4
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_4_boost_172_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_4_boost_172_0">Boost.Regex-5.1.4
|
||||||
(Boost-172.0)</a>
|
(Boost-172.0)</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -43,7 +70,7 @@
|
|||||||
Minor build fixes, see <a href="https://github.com/boostorg/regex/issues/89" target="_top">#89</a>.
|
Minor build fixes, see <a href="https://github.com/boostorg/regex/issues/89" target="_top">#89</a>.
|
||||||
</li></ul></div>
|
</li></ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h1"></a>
|
<a name="boost_regex.background.history.h3"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_3_boost_1_64_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_3_boost_1_64_0">Boost.Regex-5.1.3
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_3_boost_1_64_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_3_boost_1_64_0">Boost.Regex-5.1.3
|
||||||
(Boost-1.64.0)</a>
|
(Boost-1.64.0)</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -57,7 +84,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h2"></a>
|
<a name="boost_regex.background.history.h4"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_2_boost_1_62_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_2_boost_1_62_0">Boost.Regex-5.1.2
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_2_boost_1_62_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_2_boost_1_62_0">Boost.Regex-5.1.2
|
||||||
(Boost-1.62.0)</a>
|
(Boost-1.62.0)</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -78,7 +105,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h3"></a>
|
<a name="boost_regex.background.history.h5"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_1_boost_1_61_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_1_boost_1_61_0">Boost.Regex-5.1.1
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_1_boost_1_61_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_1_boost_1_61_0">Boost.Regex-5.1.1
|
||||||
(Boost-1.61.0)</a>
|
(Boost-1.61.0)</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -86,7 +113,7 @@
|
|||||||
Change to lockfree implementation of memory cache, see <a href="https://github.com/boostorg/regex/pull/23" target="_top">PR#23</a>.
|
Change to lockfree implementation of memory cache, see <a href="https://github.com/boostorg/regex/pull/23" target="_top">PR#23</a>.
|
||||||
</li></ul></div>
|
</li></ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h4"></a>
|
<a name="boost_regex.background.history.h6"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_0_boost_1_60_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_0_boost_1_60_0">Boost.Regex-5.1.0
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_1_0_boost_1_60_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_1_0_boost_1_60_0">Boost.Regex-5.1.0
|
||||||
(Boost-1.60.0)</a>
|
(Boost-1.60.0)</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -109,7 +136,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h5"></a>
|
<a name="boost_regex.background.history.h7"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_0_1_boost_1_58_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_0_1_boost_1_58_0">Boost.Regex-5.0.1
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_0_1_boost_1_58_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_0_1_boost_1_58_0">Boost.Regex-5.0.1
|
||||||
(Boost-1.58.0)</a>
|
(Boost-1.58.0)</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -142,7 +169,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h6"></a>
|
<a name="boost_regex.background.history.h8"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_0_0_boost_1_56_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_0_0_boost_1_56_0">Boost.Regex-5.0.0
|
<span class="phrase"><a name="boost_regex.background.history.boost_regex_5_0_0_boost_1_56_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_regex_5_0_0_boost_1_56_0">Boost.Regex-5.0.0
|
||||||
(Boost-1.56.0)</a>
|
(Boost-1.56.0)</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -175,14 +202,14 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h7"></a>
|
<a name="boost_regex.background.history.h9"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_54"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_54">Boost-1.54</a>
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_54"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_54">Boost-1.54</a>
|
||||||
</h5>
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
Fixed issue <a href="https://svn.boost.org/trac/boost/ticket/8569" target="_top">#8569</a>.
|
Fixed issue <a href="https://svn.boost.org/trac/boost/ticket/8569" target="_top">#8569</a>.
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h8"></a>
|
<a name="boost_regex.background.history.h10"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_53"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_53">Boost-1.53</a>
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_53"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_53">Boost-1.53</a>
|
||||||
</h5>
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
@ -190,7 +217,7 @@
|
|||||||
<a href="https://svn.boost.org/trac/boost/ticket/7644" target="_top">#7644</a>.
|
<a href="https://svn.boost.org/trac/boost/ticket/7644" target="_top">#7644</a>.
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h9"></a>
|
<a name="boost_regex.background.history.h11"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_51"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_51">Boost-1.51</a>
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_51"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_51">Boost-1.51</a>
|
||||||
</h5>
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
@ -200,7 +227,7 @@
|
|||||||
<a href="https://svn.boost.org/trac/boost/ticket/6346" target="_top">#6346</a>.
|
<a href="https://svn.boost.org/trac/boost/ticket/6346" target="_top">#6346</a>.
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h10"></a>
|
<a name="boost_regex.background.history.h12"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_50"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_50">Boost-1.50</a>
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_50"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_50">Boost-1.50</a>
|
||||||
</h5>
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
@ -209,7 +236,7 @@
|
|||||||
expression.
|
expression.
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h11"></a>
|
<a name="boost_regex.background.history.h13"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_48"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_48">Boost-1.48</a>
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_48"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_48">Boost-1.48</a>
|
||||||
</h5>
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
@ -219,7 +246,7 @@
|
|||||||
<a href="https://svn.boost.org/trac/boost/ticket/5736" target="_top">#5736</a>.
|
<a href="https://svn.boost.org/trac/boost/ticket/5736" target="_top">#5736</a>.
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h12"></a>
|
<a name="boost_regex.background.history.h14"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_47"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_47">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_47"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_47">Boost
|
||||||
1.47</a>
|
1.47</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -232,7 +259,7 @@
|
|||||||
<a href="https://svn.boost.org/trac/boost/ticket/5504" target="_top">#5504</a>.
|
<a href="https://svn.boost.org/trac/boost/ticket/5504" target="_top">#5504</a>.
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h13"></a>
|
<a name="boost_regex.background.history.h15"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_44"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_44">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_44"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_44">Boost
|
||||||
1.44</a>
|
1.44</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -251,7 +278,7 @@
|
|||||||
<a href="https://svn.boost.org/trac/boost/ticket/3890" target="_top">#3890</a>
|
<a href="https://svn.boost.org/trac/boost/ticket/3890" target="_top">#3890</a>
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h14"></a>
|
<a name="boost_regex.background.history.h16"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_42"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_42">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_42"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_42">Boost
|
||||||
1.42</a>
|
1.42</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -280,7 +307,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h15"></a>
|
<a name="boost_regex.background.history.h17"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_40"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_40">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_40"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_40">Boost
|
||||||
1.40</a>
|
1.40</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -289,7 +316,7 @@
|
|||||||
branch resets and recursive regular expressions.
|
branch resets and recursive regular expressions.
|
||||||
</li></ul></div>
|
</li></ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h16"></a>
|
<a name="boost_regex.background.history.h18"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_38"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_38">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_38"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_38">Boost
|
||||||
1.38</a>
|
1.38</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -317,7 +344,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h17"></a>
|
<a name="boost_regex.background.history.h19"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_34"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_34">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_34"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_34">Boost
|
||||||
1.34</a>
|
1.34</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -340,7 +367,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h18"></a>
|
<a name="boost_regex.background.history.h20"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_33_1"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_33_1">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_33_1"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_33_1">Boost
|
||||||
1.33.1</a>
|
1.33.1</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -410,7 +437,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h19"></a>
|
<a name="boost_regex.background.history.h21"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_33_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_33_0">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_33_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_33_0">Boost
|
||||||
1.33.0</a>
|
1.33.0</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -465,7 +492,7 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h20"></a>
|
<a name="boost_regex.background.history.h22"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_32_1"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_32_1">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_32_1"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_32_1">Boost
|
||||||
1.32.1</a>
|
1.32.1</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -473,7 +500,7 @@
|
|||||||
Fixed bug in partial matches of bounded repeats of '.'.
|
Fixed bug in partial matches of bounded repeats of '.'.
|
||||||
</li></ul></div>
|
</li></ul></div>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.background.history.h21"></a>
|
<a name="boost_regex.background.history.h23"></a>
|
||||||
<span class="phrase"><a name="boost_regex.background.history.boost_1_31_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_31_0">Boost
|
<span class="phrase"><a name="boost_regex.background.history.boost_1_31_0"></a></span><a class="link" href="history.html#boost_regex.background.history.boost_1_31_0">Boost
|
||||||
1.31.0</a>
|
1.31.0</a>
|
||||||
</h5>
|
</h5>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Localization</title>
|
<title>Localization</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="headers.html" title="Headers">
|
<link rel="prev" href="headers.html" title="Headers">
|
||||||
<link rel="next" href="thread_safety.html" title="Thread Safety">
|
<link rel="next" href="thread_safety.html" title="Thread Safety">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Performance</title>
|
<title>Performance</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="faq.html" title="FAQ">
|
<link rel="prev" href="faq.html" title="FAQ">
|
||||||
<link rel="next" href="performance/section_id1378460593.html" title="Testing simple leftmost-longest matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="next" href="performance/section_id1378460593.html" title="Testing simple leftmost-longest matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing simple leftmost-longest matches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
<title>Testing simple leftmost-longest matches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="../performance.html" title="Performance">
|
<link rel="prev" href="../performance.html" title="Performance">
|
||||||
<link rel="next" href="section_id1675827111.html" title="Testing Perl searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="next" href="section_id1675827111.html" title="Testing Perl searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing Perl searches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
<title>Testing Perl searches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="section_id1378460593.html" title="Testing simple leftmost-longest matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="prev" href="section_id1378460593.html" title="Testing simple leftmost-longest matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
<link rel="next" href="section_id3141719723.html" title="Testing simple leftmost-longest matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="next" href="section_id3141719723.html" title="Testing simple leftmost-longest matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing simple leftmost-longest matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
<title>Testing simple leftmost-longest matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="section_id1675827111.html" title="Testing Perl searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="prev" href="section_id1675827111.html" title="Testing Perl searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
<link rel="next" href="section_id3258595385.html" title="Testing leftmost-longest searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="next" href="section_id3258595385.html" title="Testing leftmost-longest searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing leftmost-longest searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
<title>Testing leftmost-longest searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="section_id3141719723.html" title="Testing simple leftmost-longest matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="prev" href="section_id3141719723.html" title="Testing simple leftmost-longest matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
<link rel="next" href="section_id3261825021.html" title="Testing simple Perl matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="next" href="section_id3261825021.html" title="Testing simple Perl matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing simple Perl matches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
<title>Testing simple Perl matches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="section_id3258595385.html" title="Testing leftmost-longest searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="prev" href="section_id3258595385.html" title="Testing leftmost-longest searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
<link rel="next" href="section_id3752650613.html" title="Testing Perl searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="next" href="section_id3752650613.html" title="Testing Perl searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing Perl searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
<title>Testing Perl searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="section_id3261825021.html" title="Testing simple Perl matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="prev" href="section_id3261825021.html" title="Testing simple Perl matches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
<link rel="next" href="section_id4128344975.html" title="Testing simple Perl matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="next" href="section_id4128344975.html" title="Testing simple Perl matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing simple Perl matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
<title>Testing simple Perl matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="section_id3752650613.html" title="Testing Perl searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="prev" href="section_id3752650613.html" title="Testing Perl searches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
<link rel="next" href="section_id4148872883.html" title="Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="next" href="section_id4148872883.html" title="Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
<title>Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../performance.html" title="Performance">
|
<link rel="up" href="../performance.html" title="Performance">
|
||||||
<link rel="prev" href="section_id4128344975.html" title="Testing simple Perl matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
<link rel="prev" href="section_id4128344975.html" title="Testing simple Perl matches (platform = Windows x64, compiler = Microsoft Visual C++ version 14.1)">
|
||||||
<link rel="next" href="../standards.html" title="Standards Conformance">
|
<link rel="next" href="../standards.html" title="Standards Conformance">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Redistributables</title>
|
<title>Redistributables</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="standards.html" title="Standards Conformance">
|
<link rel="prev" href="standards.html" title="Standards Conformance">
|
||||||
<link rel="next" href="acknowledgements.html" title="Acknowledgements">
|
<link rel="next" href="acknowledgements.html" title="Acknowledgements">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Standards Conformance</title>
|
<title>Standards Conformance</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="performance/section_id4148872883.html" title="Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
<link rel="prev" href="performance/section_id4148872883.html" title="Testing leftmost-longest searches (platform = linux, compiler = GNU C++ version 6.3.0)">
|
||||||
<link rel="next" href="redist.html" title="Redistributables">
|
<link rel="next" href="redist.html" title="Redistributables">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Thread Safety</title>
|
<title>Thread Safety</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../background.html" title="Background Information">
|
<link rel="up" href="../background.html" title="Background Information">
|
||||||
<link rel="prev" href="locale.html" title="Localization">
|
<link rel="prev" href="locale.html" title="Localization">
|
||||||
<link rel="next" href="examples.html" title="Test and Example Programs">
|
<link rel="next" href="examples.html" title="Test and Example Programs">
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Understanding Marked Sub-Expressions and Captures</title>
|
<title>Understanding Marked Sub-Expressions and Captures</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="unicode.html" title="Unicode and Boost.Regex">
|
<link rel="prev" href="unicode.html" title="Unicode and Boost.Regex">
|
||||||
<link rel="next" href="partial_matches.html" title="Partial Matches">
|
<link rel="next" href="partial_matches.html" title="Partial Matches">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<title>Configuration</title>
|
<title>Configuration</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="prev" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="next" href="configuration/compiler.html" title="Compiler Setup">
|
<link rel="next" href="configuration/compiler.html" title="Compiler Setup">
|
||||||
</head>
|
</head>
|
||||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||||
@ -28,6 +28,8 @@
|
|||||||
</h2></div></div></div>
|
</h2></div></div></div>
|
||||||
<div class="toc"><dl class="toc">
|
<div class="toc"><dl class="toc">
|
||||||
<dt><span class="section"><a href="configuration/compiler.html">Compiler Setup</a></span></dt>
|
<dt><span class="section"><a href="configuration/compiler.html">Compiler Setup</a></span></dt>
|
||||||
|
<dt><span class="section"><a href="configuration/standalone.html">Use in Standalone
|
||||||
|
Mode (without the rest of Boost)</a></span></dt>
|
||||||
<dt><span class="section"><a href="configuration/locale.html">Locale and traits class
|
<dt><span class="section"><a href="configuration/locale.html">Locale and traits class
|
||||||
selection</a></span></dt>
|
selection</a></span></dt>
|
||||||
<dt><span class="section"><a href="configuration/tuning.html">Algorithm Tuning</a></span></dt>
|
<dt><span class="section"><a href="configuration/tuning.html">Algorithm Tuning</a></span></dt>
|
||||||
|
@ -4,10 +4,10 @@
|
|||||||
<title>Compiler Setup</title>
|
<title>Compiler Setup</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../configuration.html" title="Configuration">
|
<link rel="up" href="../configuration.html" title="Configuration">
|
||||||
<link rel="prev" href="../configuration.html" title="Configuration">
|
<link rel="prev" href="../configuration.html" title="Configuration">
|
||||||
<link rel="next" href="locale.html" title="Locale and traits class selection">
|
<link rel="next" href="standalone.html" title="Use in Standalone Mode (without the rest of Boost)">
|
||||||
</head>
|
</head>
|
||||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||||
<table cellpadding="2" width="100%"><tr>
|
<table cellpadding="2" width="100%"><tr>
|
||||||
@ -20,7 +20,7 @@
|
|||||||
</tr></table>
|
</tr></table>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="spirit-nav">
|
<div class="spirit-nav">
|
||||||
<a accesskey="p" href="../configuration.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="locale.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
<a accesskey="p" href="../configuration.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="standalone.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<div class="titlepage"><div><div><h3 class="title">
|
<div class="titlepage"><div><div><h3 class="title">
|
||||||
@ -44,7 +44,7 @@
|
|||||||
</tr></table>
|
</tr></table>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="spirit-nav">
|
<div class="spirit-nav">
|
||||||
<a accesskey="p" href="../configuration.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="locale.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
<a accesskey="p" href="../configuration.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="standalone.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -4,9 +4,9 @@
|
|||||||
<title>Locale and traits class selection</title>
|
<title>Locale and traits class selection</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../configuration.html" title="Configuration">
|
<link rel="up" href="../configuration.html" title="Configuration">
|
||||||
<link rel="prev" href="compiler.html" title="Compiler Setup">
|
<link rel="prev" href="standalone.html" title="Use in Standalone Mode (without the rest of Boost)">
|
||||||
<link rel="next" href="tuning.html" title="Algorithm Tuning">
|
<link rel="next" href="tuning.html" title="Algorithm Tuning">
|
||||||
</head>
|
</head>
|
||||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||||
@ -20,7 +20,7 @@
|
|||||||
</tr></table>
|
</tr></table>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="spirit-nav">
|
<div class="spirit-nav">
|
||||||
<a accesskey="p" href="compiler.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="tuning.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
<a accesskey="p" href="standalone.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="tuning.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="section">
|
<div class="section">
|
||||||
<div class="titlepage"><div><div><h3 class="title">
|
<div class="titlepage"><div><div><h3 class="title">
|
||||||
@ -103,7 +103,7 @@
|
|||||||
</tr></table>
|
</tr></table>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="spirit-nav">
|
<div class="spirit-nav">
|
||||||
<a accesskey="p" href="compiler.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="tuning.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
<a accesskey="p" href="standalone.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../configuration.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="tuning.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Algorithm Tuning</title>
|
<title>Algorithm Tuning</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../configuration.html" title="Configuration">
|
<link rel="up" href="../configuration.html" title="Configuration">
|
||||||
<link rel="prev" href="locale.html" title="Locale and traits class selection">
|
<link rel="prev" href="locale.html" title="Locale and traits class selection">
|
||||||
<link rel="next" href="../install.html" title="Building and Installing the Library">
|
<link rel="next" href="../install.html" title="Building and Installing the Library">
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Search and Replace Format String Syntax</title>
|
<title>Search and Replace Format String Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="syntax/leftmost_longest_rule.html" title="The Leftmost Longest Rule">
|
<link rel="prev" href="syntax/leftmost_longest_rule.html" title="The Leftmost Longest Rule">
|
||||||
<link rel="next" href="format/sed_format.html" title="Sed Format String Syntax">
|
<link rel="next" href="format/sed_format.html" title="Sed Format String Syntax">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Boost-Extended Format String Syntax</title>
|
<title>Boost-Extended Format String Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../format.html" title="Search and Replace Format String Syntax">
|
<link rel="up" href="../format.html" title="Search and Replace Format String Syntax">
|
||||||
<link rel="prev" href="perl_format.html" title="Perl Format String Syntax">
|
<link rel="prev" href="perl_format.html" title="Perl Format String Syntax">
|
||||||
<link rel="next" href="../ref.html" title="Reference">
|
<link rel="next" href="../ref.html" title="Reference">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Perl Format String Syntax</title>
|
<title>Perl Format String Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../format.html" title="Search and Replace Format String Syntax">
|
<link rel="up" href="../format.html" title="Search and Replace Format String Syntax">
|
||||||
<link rel="prev" href="sed_format.html" title="Sed Format String Syntax">
|
<link rel="prev" href="sed_format.html" title="Sed Format String Syntax">
|
||||||
<link rel="next" href="boost_format_syntax.html" title="Boost-Extended Format String Syntax">
|
<link rel="next" href="boost_format_syntax.html" title="Boost-Extended Format String Syntax">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Sed Format String Syntax</title>
|
<title>Sed Format String Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../format.html" title="Search and Replace Format String Syntax">
|
<link rel="up" href="../format.html" title="Search and Replace Format String Syntax">
|
||||||
<link rel="prev" href="../format.html" title="Search and Replace Format String Syntax">
|
<link rel="prev" href="../format.html" title="Search and Replace Format String Syntax">
|
||||||
<link rel="next" href="perl_format.html" title="Perl Format String Syntax">
|
<link rel="next" href="perl_format.html" title="Perl Format String Syntax">
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Building and Installing the Library</title>
|
<title>Building and Installing the Library</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="configuration/tuning.html" title="Algorithm Tuning">
|
<link rel="prev" href="configuration/tuning.html" title="Algorithm Tuning">
|
||||||
<link rel="next" href="intro.html" title="Introduction and Overview">
|
<link rel="next" href="intro.html" title="Introduction and Overview">
|
||||||
</head>
|
</head>
|
||||||
@ -73,17 +73,52 @@
|
|||||||
Define BOOST_REGEX_STANDALONE when building.
|
Define BOOST_REGEX_STANDALONE when building.
|
||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
|
<p>
|
||||||
|
If you are using this library with ICU, note that since it is now header only,
|
||||||
|
it will be up to you to link to the ICU libraries if you use <code class="computeroutput"><span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">regex</span><span class="special">/</span><span class="identifier">icu</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></code> unless you are using the supplied CMake
|
||||||
|
script.
|
||||||
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.install.h0"></a>
|
<a name="boost_regex.install.h0"></a>
|
||||||
<span class="phrase"><a name="boost_regex.install.c_03_users_only_deprecated_build"></a></span><a class="link" href="install.html#boost_regex.install.c_03_users_only_deprecated_build"><span class="bold"><strong>C++03 users only (Deprecated)</strong></span> Building with bjam</a>
|
<span class="phrase"><a name="boost_regex.install.usage_with_cmake"></a></span><a class="link" href="install.html#boost_regex.install.usage_with_cmake">Usage
|
||||||
|
with CMake</a>
|
||||||
</h5>
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
This is now the preferred method for building and installing this library,
|
The library comes with a very basic CMakeLists.txt that allows this library
|
||||||
please refer to the <a href="../../../../../more/getting_started.html" target="_top">getting
|
to be used from other CMake scripts.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
CMakeLists.txt defines two targets:
|
||||||
|
</p>
|
||||||
|
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
||||||
|
<li class="listitem">
|
||||||
|
<code class="computeroutput"><span class="identifier">Boost</span><span class="special">::</span><span class="identifier">regex</span></code> This is the target to use for normal
|
||||||
|
header only builds.
|
||||||
|
</li>
|
||||||
|
<li class="listitem">
|
||||||
|
<code class="computeroutput"><span class="identifier">Boost</span><span class="special">::</span><span class="identifier">regex_icu</span></code> This is the target to use if
|
||||||
|
you are using <code class="computeroutput"><span class="special"><</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">regex</span><span class="special">/</span><span class="identifier">icu</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">></span></code> in your code, and wish to have the
|
||||||
|
ICU dependencies taken care of for you.
|
||||||
|
</li>
|
||||||
|
</ul></div>
|
||||||
|
<p>
|
||||||
|
There is also one configuration option:
|
||||||
|
</p>
|
||||||
|
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem">
|
||||||
|
BOOST_REGEX_STANDALONE when set then no other Boost libraries are targeted
|
||||||
|
as dependencies, and Boost.Regex is placed in standalone mode.
|
||||||
|
</li></ul></div>
|
||||||
|
<h5>
|
||||||
|
<a name="boost_regex.install.h1"></a>
|
||||||
|
<span class="phrase"><a name="boost_regex.install.c_03_users_only_deprecated_build"></a></span><a class="link" href="install.html#boost_regex.install.c_03_users_only_deprecated_build"><span class="bold"><strong>C++03 users only (DEPRECATED)</strong></span> Building with bjam</a>
|
||||||
|
</h5>
|
||||||
|
<p>
|
||||||
|
This is now the preferred method for building and installing legacy versions
|
||||||
|
this library, please refer to the <a href="../../../../../more/getting_started.html" target="_top">getting
|
||||||
started guide</a> for more information.
|
started guide</a> for more information.
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.install.h1"></a>
|
<a name="boost_regex.install.h2"></a>
|
||||||
<span class="phrase"><a name="boost_regex.install.building_with_unicode_and_icu_su"></a></span><a class="link" href="install.html#boost_regex.install.building_with_unicode_and_icu_su">Building
|
<span class="phrase"><a name="boost_regex.install.building_with_unicode_and_icu_su"></a></span><a class="link" href="install.html#boost_regex.install.building_with_unicode_and_icu_su">Building
|
||||||
With Unicode and ICU Support</a>
|
With Unicode and ICU Support</a>
|
||||||
</h5>
|
</h5>
|
||||||
@ -293,7 +328,7 @@
|
|||||||
header-include and linker-search paths).
|
header-include and linker-search paths).
|
||||||
</p>
|
</p>
|
||||||
<h5>
|
<h5>
|
||||||
<a name="boost_regex.install.h2"></a>
|
<a name="boost_regex.install.h3"></a>
|
||||||
<span class="phrase"><a name="boost_regex.install.building_from_source"></a></span><a class="link" href="install.html#boost_regex.install.building_from_source">Building
|
<span class="phrase"><a name="boost_regex.install.building_from_source"></a></span><a class="link" href="install.html#boost_regex.install.building_from_source">Building
|
||||||
from Source</a>
|
from Source</a>
|
||||||
</h5>
|
</h5>
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Introduction and Overview</title>
|
<title>Introduction and Overview</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="install.html" title="Building and Installing the Library">
|
<link rel="prev" href="install.html" title="Building and Installing the Library">
|
||||||
<link rel="next" href="unicode.html" title="Unicode and Boost.Regex">
|
<link rel="next" href="unicode.html" title="Unicode and Boost.Regex">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Partial Matches</title>
|
<title>Partial Matches</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="captures.html" title="Understanding Marked Sub-Expressions and Captures">
|
<link rel="prev" href="captures.html" title="Understanding Marked Sub-Expressions and Captures">
|
||||||
<link rel="next" href="syntax.html" title="Regular Expression Syntax">
|
<link rel="next" href="syntax.html" title="Regular Expression Syntax">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Reference</title>
|
<title>Reference</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="format/boost_format_syntax.html" title="Boost-Extended Format String Syntax">
|
<link rel="prev" href="format/boost_format_syntax.html" title="Boost-Extended Format String Syntax">
|
||||||
<link rel="next" href="ref/basic_regex.html" title="basic_regex">
|
<link rel="next" href="ref/basic_regex.html" title="basic_regex">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>bad_expression</title>
|
<title>bad_expression</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="regex_token_iterator.html" title="regex_token_iterator">
|
<link rel="prev" href="regex_token_iterator.html" title="regex_token_iterator">
|
||||||
<link rel="next" href="syntax_option_type.html" title="syntax_option_type">
|
<link rel="next" href="syntax_option_type.html" title="syntax_option_type">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>basic_regex</title>
|
<title>basic_regex</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="../ref.html" title="Reference">
|
<link rel="prev" href="../ref.html" title="Reference">
|
||||||
<link rel="next" href="match_results.html" title="match_results">
|
<link rel="next" href="match_results.html" title="match_results">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Concepts</title>
|
<title>Concepts</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="posix.html" title="POSIX Compatible C API's">
|
<link rel="prev" href="posix.html" title="POSIX Compatible C API's">
|
||||||
<link rel="next" href="concepts/charT_concept.html" title="charT Requirements">
|
<link rel="next" href="concepts/charT_concept.html" title="charT Requirements">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>charT Requirements</title>
|
<title>charT Requirements</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../concepts.html" title="Concepts">
|
<link rel="up" href="../concepts.html" title="Concepts">
|
||||||
<link rel="prev" href="../concepts.html" title="Concepts">
|
<link rel="prev" href="../concepts.html" title="Concepts">
|
||||||
<link rel="next" href="traits_concept.html" title="Traits Class Requirements">
|
<link rel="next" href="traits_concept.html" title="Traits Class Requirements">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Iterator Requirements</title>
|
<title>Iterator Requirements</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../concepts.html" title="Concepts">
|
<link rel="up" href="../concepts.html" title="Concepts">
|
||||||
<link rel="prev" href="traits_concept.html" title="Traits Class Requirements">
|
<link rel="prev" href="traits_concept.html" title="Traits Class Requirements">
|
||||||
<link rel="next" href="../deprecated.html" title="Deprecated Interfaces">
|
<link rel="next" href="../deprecated.html" title="Deprecated Interfaces">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Traits Class Requirements</title>
|
<title>Traits Class Requirements</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../concepts.html" title="Concepts">
|
<link rel="up" href="../concepts.html" title="Concepts">
|
||||||
<link rel="prev" href="charT_concept.html" title="charT Requirements">
|
<link rel="prev" href="charT_concept.html" title="charT Requirements">
|
||||||
<link rel="next" href="iterator_concepts.html" title="Iterator Requirements">
|
<link rel="next" href="iterator_concepts.html" title="Iterator Requirements">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Deprecated Interfaces</title>
|
<title>Deprecated Interfaces</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="concepts/iterator_concepts.html" title="Iterator Requirements">
|
<link rel="prev" href="concepts/iterator_concepts.html" title="Iterator Requirements">
|
||||||
<link rel="next" href="deprecated/regex_format.html" title="regex_format (Deprecated)">
|
<link rel="next" href="deprecated/regex_format.html" title="regex_format (Deprecated)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>High Level Class RegEx (Deprecated)</title>
|
<title>High Level Class RegEx (Deprecated)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
||||||
<link rel="prev" href="regex_split.html" title="regex_split (deprecated)">
|
<link rel="prev" href="regex_split.html" title="regex_split (deprecated)">
|
||||||
<link rel="next" href="../internals.html" title="Internal Details">
|
<link rel="next" href="../internals.html" title="Internal Details">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_format (Deprecated)</title>
|
<title>regex_format (Deprecated)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
||||||
<link rel="prev" href="../deprecated.html" title="Deprecated Interfaces">
|
<link rel="prev" href="../deprecated.html" title="Deprecated Interfaces">
|
||||||
<link rel="next" href="regex_grep.html" title="regex_grep (Deprecated)">
|
<link rel="next" href="regex_grep.html" title="regex_grep (Deprecated)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_grep (Deprecated)</title>
|
<title>regex_grep (Deprecated)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
||||||
<link rel="prev" href="regex_format.html" title="regex_format (Deprecated)">
|
<link rel="prev" href="regex_format.html" title="regex_format (Deprecated)">
|
||||||
<link rel="next" href="regex_split.html" title="regex_split (deprecated)">
|
<link rel="next" href="regex_split.html" title="regex_split (deprecated)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_split (deprecated)</title>
|
<title>regex_split (deprecated)</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
<link rel="up" href="../deprecated.html" title="Deprecated Interfaces">
|
||||||
<link rel="prev" href="regex_grep.html" title="regex_grep (Deprecated)">
|
<link rel="prev" href="regex_grep.html" title="regex_grep (Deprecated)">
|
||||||
<link rel="next" href="old_regex.html" title="High Level Class RegEx (Deprecated)">
|
<link rel="next" href="old_regex.html" title="High Level Class RegEx (Deprecated)">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>error_type</title>
|
<title>error_type</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="match_flag_type.html" title="match_flag_type">
|
<link rel="prev" href="match_flag_type.html" title="match_flag_type">
|
||||||
<link rel="next" href="regex_traits.html" title="regex_traits">
|
<link rel="next" href="regex_traits.html" title="regex_traits">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Internal Details</title>
|
<title>Internal Details</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="deprecated/old_regex.html" title="High Level Class RegEx (Deprecated)">
|
<link rel="prev" href="deprecated/old_regex.html" title="High Level Class RegEx (Deprecated)">
|
||||||
<link rel="next" href="internals/uni_iter.html" title="Unicode Iterators">
|
<link rel="next" href="internals/uni_iter.html" title="Unicode Iterators">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Unicode Iterators</title>
|
<title>Unicode Iterators</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../internals.html" title="Internal Details">
|
<link rel="up" href="../internals.html" title="Internal Details">
|
||||||
<link rel="prev" href="../internals.html" title="Internal Details">
|
<link rel="prev" href="../internals.html" title="Internal Details">
|
||||||
<link rel="next" href="../../background.html" title="Background Information">
|
<link rel="next" href="../../background.html" title="Background Information">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>match_flag_type</title>
|
<title>match_flag_type</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="syntax_option_type/syntax_option_type_literal.html" title="Options for Literal Strings">
|
<link rel="prev" href="syntax_option_type/syntax_option_type_literal.html" title="Options for Literal Strings">
|
||||||
<link rel="next" href="error_type.html" title="error_type">
|
<link rel="next" href="error_type.html" title="error_type">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>match_results</title>
|
<title>match_results</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="basic_regex.html" title="basic_regex">
|
<link rel="prev" href="basic_regex.html" title="basic_regex">
|
||||||
<link rel="next" href="sub_match.html" title="sub_match">
|
<link rel="next" href="sub_match.html" title="sub_match">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Interfacing With Non-Standard String Types</title>
|
<title>Interfacing With Non-Standard String Types</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="regex_traits.html" title="regex_traits">
|
<link rel="prev" href="regex_traits.html" title="regex_traits">
|
||||||
<link rel="next" href="non_std_strings/icu.html" title="Working With Unicode and ICU String Types">
|
<link rel="next" href="non_std_strings/icu.html" title="Working With Unicode and ICU String Types">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Working With Unicode and ICU String Types</title>
|
<title>Working With Unicode and ICU String Types</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
<link rel="up" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
||||||
<link rel="prev" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
<link rel="prev" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
||||||
<link rel="next" href="icu/intro.html" title="Introduction to using Regex with ICU">
|
<link rel="next" href="icu/intro.html" title="Introduction to using Regex with ICU">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Introduction to using Regex with ICU</title>
|
<title>Introduction to using Regex with ICU</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
||||||
<link rel="prev" href="../icu.html" title="Working With Unicode and ICU String Types">
|
<link rel="prev" href="../icu.html" title="Working With Unicode and ICU String Types">
|
||||||
<link rel="next" href="unicode_types.html" title="Unicode regular expression types">
|
<link rel="next" href="unicode_types.html" title="Unicode regular expression types">
|
||||||
@ -38,9 +38,7 @@
|
|||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
In order to use this header you will need the <a href="http://www.ibm.com/software/globalization/icu/" target="_top">ICU
|
In order to use this header you will need the <a href="http://www.ibm.com/software/globalization/icu/" target="_top">ICU
|
||||||
library</a>, and you will need to have built the Boost.Regex library
|
library</a>.
|
||||||
with <a class="link" href="../../../install.html#boost_regex.install.building_with_unicode_and_icu_su">ICU
|
|
||||||
support enabled</a>.
|
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
The header will enable you to:
|
The header will enable you to:
|
||||||
@ -59,6 +57,11 @@
|
|||||||
UTF-16 or UTF-32.
|
UTF-16 or UTF-32.
|
||||||
</li>
|
</li>
|
||||||
</ul></div>
|
</ul></div>
|
||||||
|
<p>
|
||||||
|
CMake users should link to the <code class="computeroutput"><span class="identifier">Boost</span><span class="special">::</span><span class="identifier">regex_icu</span></code>
|
||||||
|
target in our CMakeLists.txt in order to have ICU dependencies taken
|
||||||
|
care of when using this header.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||||
<td align="left"></td>
|
<td align="left"></td>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Unicode Regular Expression Algorithms</title>
|
<title>Unicode Regular Expression Algorithms</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
||||||
<link rel="prev" href="unicode_types.html" title="Unicode regular expression types">
|
<link rel="prev" href="unicode_types.html" title="Unicode regular expression types">
|
||||||
<link rel="next" href="unicode_iter.html" title="Unicode Aware Regex Iterators">
|
<link rel="next" href="unicode_iter.html" title="Unicode Aware Regex Iterators">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Unicode Aware Regex Iterators</title>
|
<title>Unicode Aware Regex Iterators</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
||||||
<link rel="prev" href="unicode_algo.html" title="Unicode Regular Expression Algorithms">
|
<link rel="prev" href="unicode_algo.html" title="Unicode Regular Expression Algorithms">
|
||||||
<link rel="next" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
<link rel="next" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Unicode regular expression types</title>
|
<title>Unicode regular expression types</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
<link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types">
|
||||||
<link rel="prev" href="intro.html" title="Introduction to using Regex with ICU">
|
<link rel="prev" href="intro.html" title="Introduction to using Regex with ICU">
|
||||||
<link rel="next" href="unicode_algo.html" title="Unicode Regular Expression Algorithms">
|
<link rel="next" href="unicode_algo.html" title="Unicode Regular Expression Algorithms">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Using Boost Regex With MFC Strings</title>
|
<title>Using Boost Regex With MFC Strings</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
<link rel="up" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
||||||
<link rel="prev" href="icu/unicode_iter.html" title="Unicode Aware Regex Iterators">
|
<link rel="prev" href="icu/unicode_iter.html" title="Unicode Aware Regex Iterators">
|
||||||
<link rel="next" href="mfc_strings/mfc_intro.html" title="Introduction to Boost.Regex and MFC Strings">
|
<link rel="next" href="mfc_strings/mfc_intro.html" title="Introduction to Boost.Regex and MFC Strings">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Overloaded Algorithms For MFC String Types</title>
|
<title>Overloaded Algorithms For MFC String Types</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
||||||
<link rel="prev" href="mfc_regex_create.html" title="Regular Expression Creation From an MFC String">
|
<link rel="prev" href="mfc_regex_create.html" title="Regular Expression Creation From an MFC String">
|
||||||
<link rel="next" href="mfc_iter.html" title="Iterating Over the Matches Within An MFC String">
|
<link rel="next" href="mfc_iter.html" title="Iterating Over the Matches Within An MFC String">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Introduction to Boost.Regex and MFC Strings</title>
|
<title>Introduction to Boost.Regex and MFC Strings</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
||||||
<link rel="prev" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
<link rel="prev" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
||||||
<link rel="next" href="mfc_regex_types.html" title="Regex Types Used With MFC Strings">
|
<link rel="next" href="mfc_regex_types.html" title="Regex Types Used With MFC Strings">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Iterating Over the Matches Within An MFC String</title>
|
<title>Iterating Over the Matches Within An MFC String</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
||||||
<link rel="prev" href="mfc_algo.html" title="Overloaded Algorithms For MFC String Types">
|
<link rel="prev" href="mfc_algo.html" title="Overloaded Algorithms For MFC String Types">
|
||||||
<link rel="next" href="../../posix.html" title="POSIX Compatible C API's">
|
<link rel="next" href="../../posix.html" title="POSIX Compatible C API's">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Regular Expression Creation From an MFC String</title>
|
<title>Regular Expression Creation From an MFC String</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
||||||
<link rel="prev" href="mfc_regex_types.html" title="Regex Types Used With MFC Strings">
|
<link rel="prev" href="mfc_regex_types.html" title="Regex Types Used With MFC Strings">
|
||||||
<link rel="next" href="mfc_algo.html" title="Overloaded Algorithms For MFC String Types">
|
<link rel="next" href="mfc_algo.html" title="Overloaded Algorithms For MFC String Types">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Regex Types Used With MFC Strings</title>
|
<title>Regex Types Used With MFC Strings</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
<link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings">
|
||||||
<link rel="prev" href="mfc_intro.html" title="Introduction to Boost.Regex and MFC Strings">
|
<link rel="prev" href="mfc_intro.html" title="Introduction to Boost.Regex and MFC Strings">
|
||||||
<link rel="next" href="mfc_regex_create.html" title="Regular Expression Creation From an MFC String">
|
<link rel="next" href="mfc_regex_create.html" title="Regular Expression Creation From an MFC String">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>POSIX Compatible C API's</title>
|
<title>POSIX Compatible C API's</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="non_std_strings/mfc_strings/mfc_iter.html" title="Iterating Over the Matches Within An MFC String">
|
<link rel="prev" href="non_std_strings/mfc_strings/mfc_iter.html" title="Iterating Over the Matches Within An MFC String">
|
||||||
<link rel="next" href="concepts.html" title="Concepts">
|
<link rel="next" href="concepts.html" title="Concepts">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_iterator</title>
|
<title>regex_iterator</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="regex_replace.html" title="regex_replace">
|
<link rel="prev" href="regex_replace.html" title="regex_replace">
|
||||||
<link rel="next" href="regex_token_iterator.html" title="regex_token_iterator">
|
<link rel="next" href="regex_token_iterator.html" title="regex_token_iterator">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_match</title>
|
<title>regex_match</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="sub_match.html" title="sub_match">
|
<link rel="prev" href="sub_match.html" title="sub_match">
|
||||||
<link rel="next" href="regex_search.html" title="regex_search">
|
<link rel="next" href="regex_search.html" title="regex_search">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_replace</title>
|
<title>regex_replace</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="regex_search.html" title="regex_search">
|
<link rel="prev" href="regex_search.html" title="regex_search">
|
||||||
<link rel="next" href="regex_iterator.html" title="regex_iterator">
|
<link rel="next" href="regex_iterator.html" title="regex_iterator">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_search</title>
|
<title>regex_search</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="regex_match.html" title="regex_match">
|
<link rel="prev" href="regex_match.html" title="regex_match">
|
||||||
<link rel="next" href="regex_replace.html" title="regex_replace">
|
<link rel="next" href="regex_replace.html" title="regex_replace">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_token_iterator</title>
|
<title>regex_token_iterator</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="regex_iterator.html" title="regex_iterator">
|
<link rel="prev" href="regex_iterator.html" title="regex_iterator">
|
||||||
<link rel="next" href="bad_expression.html" title="bad_expression">
|
<link rel="next" href="bad_expression.html" title="bad_expression">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>regex_traits</title>
|
<title>regex_traits</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="error_type.html" title="error_type">
|
<link rel="prev" href="error_type.html" title="error_type">
|
||||||
<link rel="next" href="non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
<link rel="next" href="non_std_strings.html" title="Interfacing With Non-Standard String Types">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>sub_match</title>
|
<title>sub_match</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="match_results.html" title="match_results">
|
<link rel="prev" href="match_results.html" title="match_results">
|
||||||
<link rel="next" href="regex_match.html" title="regex_match">
|
<link rel="next" href="regex_match.html" title="regex_match">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>syntax_option_type</title>
|
<title>syntax_option_type</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../ref.html" title="Reference">
|
<link rel="up" href="../ref.html" title="Reference">
|
||||||
<link rel="prev" href="bad_expression.html" title="bad_expression">
|
<link rel="prev" href="bad_expression.html" title="bad_expression">
|
||||||
<link rel="next" href="syntax_option_type/syntax_option_type_synopsis.html" title="syntax_option_type Synopsis">
|
<link rel="next" href="syntax_option_type/syntax_option_type_synopsis.html" title="syntax_option_type Synopsis">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Options for POSIX Basic Regular Expressions</title>
|
<title>Options for POSIX Basic Regular Expressions</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
||||||
<link rel="prev" href="syntax_option_type_extended.html" title="Options for POSIX Extended Regular Expressions">
|
<link rel="prev" href="syntax_option_type_extended.html" title="Options for POSIX Extended Regular Expressions">
|
||||||
<link rel="next" href="syntax_option_type_literal.html" title="Options for Literal Strings">
|
<link rel="next" href="syntax_option_type_literal.html" title="Options for Literal Strings">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Options for POSIX Extended Regular Expressions</title>
|
<title>Options for POSIX Extended Regular Expressions</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
||||||
<link rel="prev" href="syntax_option_type_perl.html" title="Options for Perl Regular Expressions">
|
<link rel="prev" href="syntax_option_type_perl.html" title="Options for Perl Regular Expressions">
|
||||||
<link rel="next" href="syntax_option_type_basic.html" title="Options for POSIX Basic Regular Expressions">
|
<link rel="next" href="syntax_option_type_basic.html" title="Options for POSIX Basic Regular Expressions">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Options for Literal Strings</title>
|
<title>Options for Literal Strings</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
||||||
<link rel="prev" href="syntax_option_type_basic.html" title="Options for POSIX Basic Regular Expressions">
|
<link rel="prev" href="syntax_option_type_basic.html" title="Options for POSIX Basic Regular Expressions">
|
||||||
<link rel="next" href="../match_flag_type.html" title="match_flag_type">
|
<link rel="next" href="../match_flag_type.html" title="match_flag_type">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Overview of syntax_option_type</title>
|
<title>Overview of syntax_option_type</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
||||||
<link rel="prev" href="syntax_option_type_synopsis.html" title="syntax_option_type Synopsis">
|
<link rel="prev" href="syntax_option_type_synopsis.html" title="syntax_option_type Synopsis">
|
||||||
<link rel="next" href="syntax_option_type_perl.html" title="Options for Perl Regular Expressions">
|
<link rel="next" href="syntax_option_type_perl.html" title="Options for Perl Regular Expressions">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Options for Perl Regular Expressions</title>
|
<title>Options for Perl Regular Expressions</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
||||||
<link rel="prev" href="syntax_option_type_overview.html" title="Overview of syntax_option_type">
|
<link rel="prev" href="syntax_option_type_overview.html" title="Overview of syntax_option_type">
|
||||||
<link rel="next" href="syntax_option_type_extended.html" title="Options for POSIX Extended Regular Expressions">
|
<link rel="next" href="syntax_option_type_extended.html" title="Options for POSIX Extended Regular Expressions">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>syntax_option_type Synopsis</title>
|
<title>syntax_option_type Synopsis</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
<link rel="up" href="../syntax_option_type.html" title="syntax_option_type">
|
||||||
<link rel="prev" href="../syntax_option_type.html" title="syntax_option_type">
|
<link rel="prev" href="../syntax_option_type.html" title="syntax_option_type">
|
||||||
<link rel="next" href="syntax_option_type_overview.html" title="Overview of syntax_option_type">
|
<link rel="next" href="syntax_option_type_overview.html" title="Overview of syntax_option_type">
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Regular Expression Syntax</title>
|
<title>Regular Expression Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="partial_matches.html" title="Partial Matches">
|
<link rel="prev" href="partial_matches.html" title="Partial Matches">
|
||||||
<link rel="next" href="syntax/perl_syntax.html" title="Perl Regular Expression Syntax">
|
<link rel="next" href="syntax/perl_syntax.html" title="Perl Regular Expression Syntax">
|
||||||
</head>
|
</head>
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>POSIX Extended Regular Expression Syntax</title>
|
<title>POSIX Extended Regular Expression Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
||||||
<link rel="prev" href="perl_syntax.html" title="Perl Regular Expression Syntax">
|
<link rel="prev" href="perl_syntax.html" title="Perl Regular Expression Syntax">
|
||||||
<link rel="next" href="basic_syntax.html" title="POSIX Basic Regular Expression Syntax">
|
<link rel="next" href="basic_syntax.html" title="POSIX Basic Regular Expression Syntax">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>POSIX Basic Regular Expression Syntax</title>
|
<title>POSIX Basic Regular Expression Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
||||||
<link rel="prev" href="basic_extended.html" title="POSIX Extended Regular Expression Syntax">
|
<link rel="prev" href="basic_extended.html" title="POSIX Extended Regular Expression Syntax">
|
||||||
<link rel="next" href="character_classes.html" title="Character Class Names">
|
<link rel="next" href="character_classes.html" title="Character Class Names">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Character Class Names</title>
|
<title>Character Class Names</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
||||||
<link rel="prev" href="basic_syntax.html" title="POSIX Basic Regular Expression Syntax">
|
<link rel="prev" href="basic_syntax.html" title="POSIX Basic Regular Expression Syntax">
|
||||||
<link rel="next" href="character_classes/std_char_classes.html" title="Character Classes that are Always Supported">
|
<link rel="next" href="character_classes/std_char_classes.html" title="Character Classes that are Always Supported">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Character classes that are supported by Unicode Regular Expressions</title>
|
<title>Character classes that are supported by Unicode Regular Expressions</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../character_classes.html" title="Character Class Names">
|
<link rel="up" href="../character_classes.html" title="Character Class Names">
|
||||||
<link rel="prev" href="std_char_classes.html" title="Character Classes that are Always Supported">
|
<link rel="prev" href="std_char_classes.html" title="Character Classes that are Always Supported">
|
||||||
<link rel="next" href="../collating_names.html" title="Collating Names">
|
<link rel="next" href="../collating_names.html" title="Collating Names">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Character Classes that are Always Supported</title>
|
<title>Character Classes that are Always Supported</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../character_classes.html" title="Character Class Names">
|
<link rel="up" href="../character_classes.html" title="Character Class Names">
|
||||||
<link rel="prev" href="../character_classes.html" title="Character Class Names">
|
<link rel="prev" href="../character_classes.html" title="Character Class Names">
|
||||||
<link rel="next" href="optional_char_class_names.html" title="Character classes that are supported by Unicode Regular Expressions">
|
<link rel="next" href="optional_char_class_names.html" title="Character classes that are supported by Unicode Regular Expressions">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Collating Names</title>
|
<title>Collating Names</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
||||||
<link rel="prev" href="character_classes/optional_char_class_names.html" title="Character classes that are supported by Unicode Regular Expressions">
|
<link rel="prev" href="character_classes/optional_char_class_names.html" title="Character classes that are supported by Unicode Regular Expressions">
|
||||||
<link rel="next" href="collating_names/digraphs.html" title="Digraphs">
|
<link rel="next" href="collating_names/digraphs.html" title="Digraphs">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Digraphs</title>
|
<title>Digraphs</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../collating_names.html" title="Collating Names">
|
<link rel="up" href="../collating_names.html" title="Collating Names">
|
||||||
<link rel="prev" href="../collating_names.html" title="Collating Names">
|
<link rel="prev" href="../collating_names.html" title="Collating Names">
|
||||||
<link rel="next" href="posix_symbolic_names.html" title="POSIX Symbolic Names">
|
<link rel="next" href="posix_symbolic_names.html" title="POSIX Symbolic Names">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Named Unicode Characters</title>
|
<title>Named Unicode Characters</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../collating_names.html" title="Collating Names">
|
<link rel="up" href="../collating_names.html" title="Collating Names">
|
||||||
<link rel="prev" href="posix_symbolic_names.html" title="POSIX Symbolic Names">
|
<link rel="prev" href="posix_symbolic_names.html" title="POSIX Symbolic Names">
|
||||||
<link rel="next" href="../leftmost_longest_rule.html" title="The Leftmost Longest Rule">
|
<link rel="next" href="../leftmost_longest_rule.html" title="The Leftmost Longest Rule">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>POSIX Symbolic Names</title>
|
<title>POSIX Symbolic Names</title>
|
||||||
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../collating_names.html" title="Collating Names">
|
<link rel="up" href="../collating_names.html" title="Collating Names">
|
||||||
<link rel="prev" href="digraphs.html" title="Digraphs">
|
<link rel="prev" href="digraphs.html" title="Digraphs">
|
||||||
<link rel="next" href="named_unicode.html" title="Named Unicode Characters">
|
<link rel="next" href="named_unicode.html" title="Named Unicode Characters">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>The Leftmost Longest Rule</title>
|
<title>The Leftmost Longest Rule</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
||||||
<link rel="prev" href="collating_names/named_unicode.html" title="Named Unicode Characters">
|
<link rel="prev" href="collating_names/named_unicode.html" title="Named Unicode Characters">
|
||||||
<link rel="next" href="../format.html" title="Search and Replace Format String Syntax">
|
<link rel="next" href="../format.html" title="Search and Replace Format String Syntax">
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<title>Perl Regular Expression Syntax</title>
|
<title>Perl Regular Expression Syntax</title>
|
||||||
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
<link rel="up" href="../syntax.html" title="Regular Expression Syntax">
|
||||||
<link rel="prev" href="../syntax.html" title="Regular Expression Syntax">
|
<link rel="prev" href="../syntax.html" title="Regular Expression Syntax">
|
||||||
<link rel="next" href="basic_extended.html" title="POSIX Extended Regular Expression Syntax">
|
<link rel="next" href="basic_extended.html" title="POSIX Extended Regular Expression Syntax">
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
<title>Unicode and Boost.Regex</title>
|
<title>Unicode and Boost.Regex</title>
|
||||||
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="up" href="../index.html" title="Boost.Regex 5.1.4">
|
<link rel="up" href="../index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="prev" href="intro.html" title="Introduction and Overview">
|
<link rel="prev" href="intro.html" title="Introduction and Overview">
|
||||||
<link rel="next" href="captures.html" title="Understanding Marked Sub-Expressions and Captures">
|
<link rel="next" href="captures.html" title="Understanding Marked Sub-Expressions and Captures">
|
||||||
</head>
|
</head>
|
||||||
@ -63,11 +63,10 @@
|
|||||||
</h5>
|
</h5>
|
||||||
<p>
|
<p>
|
||||||
If you have the <a href="http://www.ibm.com/software/globalization/icu/" target="_top">ICU
|
If you have the <a href="http://www.ibm.com/software/globalization/icu/" target="_top">ICU
|
||||||
library</a>, then Boost.Regex can be <a class="link" href="install.html#boost_regex.install.building_with_unicode_and_icu_su">configured
|
library</a>, then Boost.Regex provides a distinct regular expression type
|
||||||
to make use of it</a>, and provide a distinct regular expression type (boost::u32regex),
|
(boost::u32regex), that supports both Unicode specific character properties,
|
||||||
that supports both Unicode specific character properties, and the searching
|
and the searching of text that is encoded in either UTF-8, UTF-16, or UTF-32.
|
||||||
of text that is encoded in either UTF-8, UTF-16, or UTF-32. See: <a class="link" href="ref/non_std_strings/icu.html" title="Working With Unicode and ICU String Types">ICU
|
See: <a class="link" href="ref/non_std_strings/icu.html" title="Working With Unicode and ICU String Types">ICU string class support</a>.
|
||||||
string class support</a>.
|
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||||
<title>Boost.Regex 5.1.4</title>
|
<title>Boost.Regex 7.0.0</title>
|
||||||
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
|
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
|
||||||
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
|
||||||
<link rel="home" href="index.html" title="Boost.Regex 5.1.4">
|
<link rel="home" href="index.html" title="Boost.Regex 7.0.0">
|
||||||
<link rel="next" href="boost_regex/configuration.html" title="Configuration">
|
<link rel="next" href="boost_regex/configuration.html" title="Configuration">
|
||||||
</head>
|
</head>
|
||||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||||
@ -22,7 +22,7 @@
|
|||||||
<div class="titlepage">
|
<div class="titlepage">
|
||||||
<div>
|
<div>
|
||||||
<div><h2 class="title">
|
<div><h2 class="title">
|
||||||
<a name="boost_regex"></a>Boost.Regex 5.1.4</h2></div>
|
<a name="boost_regex"></a>Boost.Regex 7.0.0</h2></div>
|
||||||
<div><div class="authorgroup"><div class="author"><h3 class="author">
|
<div><div class="authorgroup"><div class="author"><h3 class="author">
|
||||||
<span class="firstname">John</span> <span class="surname">Maddock</span>
|
<span class="firstname">John</span> <span class="surname">Maddock</span>
|
||||||
</h3></div></div></div>
|
</h3></div></div></div>
|
||||||
@ -42,6 +42,8 @@
|
|||||||
<dt><span class="section"><a href="boost_regex/configuration.html">Configuration</a></span></dt>
|
<dt><span class="section"><a href="boost_regex/configuration.html">Configuration</a></span></dt>
|
||||||
<dd><dl>
|
<dd><dl>
|
||||||
<dt><span class="section"><a href="boost_regex/configuration/compiler.html">Compiler Setup</a></span></dt>
|
<dt><span class="section"><a href="boost_regex/configuration/compiler.html">Compiler Setup</a></span></dt>
|
||||||
|
<dt><span class="section"><a href="boost_regex/configuration/standalone.html">Use in Standalone
|
||||||
|
Mode (without the rest of Boost)</a></span></dt>
|
||||||
<dt><span class="section"><a href="boost_regex/configuration/locale.html">Locale and traits class
|
<dt><span class="section"><a href="boost_regex/configuration/locale.html">Locale and traits class
|
||||||
selection</a></span></dt>
|
selection</a></span></dt>
|
||||||
<dt><span class="section"><a href="boost_regex/configuration/tuning.html">Algorithm Tuning</a></span></dt>
|
<dt><span class="section"><a href="boost_regex/configuration/tuning.html">Algorithm Tuning</a></span></dt>
|
||||||
@ -213,7 +215,7 @@
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
|
||||||
<td align="left"><p><small>Last revised: January 25, 2021 at 11:08:05 GMT</small></p></td>
|
<td align="left"><p><small>Last revised: October 10, 2021 at 15:39:14 GMT</small></p></td>
|
||||||
<td align="right"><div class="copyright-footer"></div></td>
|
<td align="right"><div class="copyright-footer"></div></td>
|
||||||
</tr></table>
|
</tr></table>
|
||||||
<hr>
|
<hr>
|
||||||
|
@ -18,9 +18,7 @@ contains the data types and algorithms necessary for working with regular
|
|||||||
expressions in a Unicode aware environment.
|
expressions in a Unicode aware environment.
|
||||||
|
|
||||||
In order to use this header you will need the
|
In order to use this header you will need the
|
||||||
[@http://www.ibm.com/software/globalization/icu/ ICU library], and you will need
|
[@http://www.ibm.com/software/globalization/icu/ ICU library].
|
||||||
to have built the Boost.Regex library with
|
|
||||||
[link boost_regex.install.building_with_unicode_and_icu_su ICU support enabled].
|
|
||||||
|
|
||||||
The header will enable you to:
|
The header will enable you to:
|
||||||
|
|
||||||
@ -28,6 +26,9 @@ The header will enable you to:
|
|||||||
* Create regular expressions that support various Unicode data properties, including character classification.
|
* Create regular expressions that support various Unicode data properties, including character classification.
|
||||||
* Transparently search Unicode strings that are encoded as either UTF-8, UTF-16 or UTF-32.
|
* Transparently search Unicode strings that are encoded as either UTF-8, UTF-16 or UTF-32.
|
||||||
|
|
||||||
|
CMake users should link to the `Boost::regex_icu` target in our CMakeLists.txt in order to have ICU dependencies
|
||||||
|
taken care of when using this header.
|
||||||
|
|
||||||
[endsect]
|
[endsect]
|
||||||
|
|
||||||
[section:unicode_types Unicode regular expression types]
|
[section:unicode_types Unicode regular expression types]
|
||||||
|
@ -35,9 +35,26 @@ in order to do this you must either:
|
|||||||
then the library will automoatically enter standalone mode. Or:
|
then the library will automoatically enter standalone mode. Or:
|
||||||
* Define BOOST_REGEX_STANDALONE when building.
|
* Define BOOST_REGEX_STANDALONE when building.
|
||||||
|
|
||||||
[h4 [*C++03 users only (Deprecated)] Building with bjam]
|
If you are using this library with ICU, note that since it is now header only, it will be up to you
|
||||||
|
to link to the ICU libraries if you use `<boost/regex/icu.hpp>` unless you are using the supplied CMake script.
|
||||||
|
|
||||||
This is now the preferred method for building and installing this library,
|
[h4 Usage with CMake]
|
||||||
|
|
||||||
|
The library comes with a very basic CMakeLists.txt that allows this library to be used from other CMake scripts.
|
||||||
|
|
||||||
|
CMakeLists.txt defines two targets:
|
||||||
|
|
||||||
|
* `Boost::regex` This is the target to use for normal header only builds.
|
||||||
|
* `Boost::regex_icu` This is the target to use if you are using `<boost/regex/icu.hpp>` in your code, and wish to have the ICU dependencies taken care of for you.
|
||||||
|
|
||||||
|
There is also one configuration option:
|
||||||
|
|
||||||
|
* BOOST_REGEX_STANDALONE when set then no other Boost libraries are targeted as dependencies, and Boost.Regex is placed in standalone mode. Invoke CMake
|
||||||
|
with -DBOOST_REGEX_STANDALONE=on to enable standalone mode.
|
||||||
|
|
||||||
|
[h4 [*C++03 users only (DEPRECATED)] Building with bjam]
|
||||||
|
|
||||||
|
This is now the preferred method for building and installing legacy versions this library,
|
||||||
please refer to the
|
please refer to the
|
||||||
[@../../../../more/getting_started.html getting started guide] for more information.
|
[@../../../../more/getting_started.html getting started guide] for more information.
|
||||||
|
|
||||||
|
@ -29,10 +29,7 @@ characters, it is not possible to search UTF-8, or even UTF-16 on many platforms
|
|||||||
|
|
||||||
If you have the
|
If you have the
|
||||||
[@http://www.ibm.com/software/globalization/icu/ ICU library], then
|
[@http://www.ibm.com/software/globalization/icu/ ICU library], then
|
||||||
Boost.Regex can be
|
Boost.Regex provides a distinct regular expression type (boost::u32regex),
|
||||||
[link boost_regex.install.building_with_unicode_and_icu_su
|
|
||||||
configured to make use
|
|
||||||
of it], and provide a distinct regular expression type (boost::u32regex),
|
|
||||||
that supports both Unicode specific character properties, and the searching
|
that supports both Unicode specific character properties, and the searching
|
||||||
of text that is encoded in either UTF-8, UTF-16, or UTF-32. See:
|
of text that is encoded in either UTF-8, UTF-16, or UTF-32. See:
|
||||||
[link boost_regex.ref.non_std_strings.icu
|
[link boost_regex.ref.non_std_strings.icu
|
||||||
|
22
test/cmake_subdir_test_icu/CMakeLists.txt
Normal file
22
test/cmake_subdir_test_icu/CMakeLists.txt
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# Copyright 2018, 2019 Peter Dimov
|
||||||
|
# Distributed under the Boost Software License, Version 1.0.
|
||||||
|
# See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt
|
||||||
|
|
||||||
|
cmake_minimum_required(VERSION 3.5...3.16)
|
||||||
|
|
||||||
|
project(cmake_subdir_test LANGUAGES CXX)
|
||||||
|
|
||||||
|
add_subdirectory(../.. boostorg/regex)
|
||||||
|
add_subdirectory(../../../config boostorg/config)
|
||||||
|
add_subdirectory(../../../core boostorg/core)
|
||||||
|
add_subdirectory(../../../assert boostorg/assert)
|
||||||
|
add_subdirectory(../../../throw_exception boostorg/throw_exception)
|
||||||
|
add_subdirectory(../../../predef boostorg/predef)
|
||||||
|
|
||||||
|
add_executable(quick_icu ../quick_icu.cpp)
|
||||||
|
target_link_libraries(quick_icu Boost::regex_icu)
|
||||||
|
|
||||||
|
enable_testing()
|
||||||
|
add_test(quick_icu quick_icu)
|
||||||
|
|
||||||
|
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND} --output-on-failure -C $<CONFIG>)
|
@ -10,7 +10,7 @@
|
|||||||
// See library home page at http://www.boost.org/libs/regex
|
// See library home page at http://www.boost.org/libs/regex
|
||||||
|
|
||||||
#include <boost/regex.hpp>
|
#include <boost/regex.hpp>
|
||||||
#include <boost/core/lightweight_test.hpp>
|
#include <cassert>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
bool validate_card_format(const std::string& s)
|
bool validate_card_format(const std::string& s)
|
||||||
@ -37,19 +37,19 @@ int main()
|
|||||||
{
|
{
|
||||||
std::string s[ 4 ] = { "0000111122223333", "0000 1111 2222 3333", "0000-1111-2222-3333", "000-1111-2222-3333" };
|
std::string s[ 4 ] = { "0000111122223333", "0000 1111 2222 3333", "0000-1111-2222-3333", "000-1111-2222-3333" };
|
||||||
|
|
||||||
BOOST_TEST( !validate_card_format( s[0] ) );
|
assert(!validate_card_format(s[0]));
|
||||||
BOOST_TEST_EQ( machine_readable_card_number( s[0] ), s[0] );
|
assert(machine_readable_card_number(s[0]) == s[0]);
|
||||||
BOOST_TEST_EQ( human_readable_card_number( s[0] ), s[2] );
|
assert(human_readable_card_number(s[0]) == s[2]);
|
||||||
|
|
||||||
BOOST_TEST( validate_card_format( s[1] ) );
|
assert(validate_card_format(s[1]));
|
||||||
BOOST_TEST_EQ( machine_readable_card_number( s[1] ), s[0] );
|
assert(machine_readable_card_number(s[1]) == s[0]);
|
||||||
BOOST_TEST_EQ( human_readable_card_number( s[1] ), s[2] );
|
assert(human_readable_card_number(s[1]) == s[2]);
|
||||||
|
|
||||||
BOOST_TEST( validate_card_format( s[2] ) );
|
assert(validate_card_format(s[2]));
|
||||||
BOOST_TEST_EQ( machine_readable_card_number( s[2] ), s[0] );
|
assert(machine_readable_card_number(s[2]) == s[0]);
|
||||||
BOOST_TEST_EQ( human_readable_card_number( s[2] ), s[2] );
|
assert(human_readable_card_number(s[2]) == s[2]);
|
||||||
|
|
||||||
BOOST_TEST( !validate_card_format( s[3] ) );
|
assert(!validate_card_format(s[3]));
|
||||||
|
|
||||||
return boost::report_errors();
|
return 0;
|
||||||
}
|
}
|
||||||
|
55
test/quick_icu.cpp
Normal file
55
test/quick_icu.cpp
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
|
||||||
|
// Copyright 1998-2002 John Maddock
|
||||||
|
// Copyright 2017 Peter Dimov
|
||||||
|
//
|
||||||
|
// Distributed under the Boost Software License, Version 1.0.
|
||||||
|
//
|
||||||
|
// See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
// http://www.boost.org/LICENSE_1_0.txt
|
||||||
|
|
||||||
|
// See library home page at http://www.boost.org/libs/regex
|
||||||
|
|
||||||
|
#include <boost/regex/icu.hpp>
|
||||||
|
#include <cassert>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
bool validate_card_format(const std::string& s)
|
||||||
|
{
|
||||||
|
static const boost::u32regex e = boost::make_u32regex("(\\d{4}[- ]){3}\\d{4}");
|
||||||
|
return boost::u32regex_match(s, e);
|
||||||
|
}
|
||||||
|
|
||||||
|
const boost::u32regex card_rx = boost::make_u32regex("\\A(\\d{3,4})[- ]?(\\d{4})[- ]?(\\d{4})[- ]?(\\d{4})\\z");
|
||||||
|
const std::string machine_format("\\1\\2\\3\\4");
|
||||||
|
const std::string human_format("\\1-\\2-\\3-\\4");
|
||||||
|
|
||||||
|
std::string machine_readable_card_number(const std::string& s)
|
||||||
|
{
|
||||||
|
return boost::u32regex_replace(s, card_rx, machine_format, boost::match_default | boost::format_sed);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string human_readable_card_number(const std::string& s)
|
||||||
|
{
|
||||||
|
return boost::u32regex_replace(s, card_rx, human_format, boost::match_default | boost::format_sed);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
std::string s[ 4 ] = { "0000111122223333", "0000 1111 2222 3333", "0000-1111-2222-3333", "000-1111-2222-3333" };
|
||||||
|
|
||||||
|
assert( !validate_card_format( s[0] ) );
|
||||||
|
assert( machine_readable_card_number( s[0] ) == s[0] );
|
||||||
|
assert( human_readable_card_number( s[0] ) == s[2] );
|
||||||
|
|
||||||
|
assert( validate_card_format( s[1] ) );
|
||||||
|
assert( machine_readable_card_number( s[1] ) == s[0] );
|
||||||
|
assert( human_readable_card_number( s[1] ) == s[2] );
|
||||||
|
|
||||||
|
assert( validate_card_format( s[2] ) );
|
||||||
|
assert( machine_readable_card_number( s[2] ) == s[0] );
|
||||||
|
assert( human_readable_card_number( s[2] ) == s[2] );
|
||||||
|
|
||||||
|
assert( !validate_card_format( s[3] ) );
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Reference in New Issue
Block a user