diff --git a/doc/html/boost_regex/background_information.html b/doc/html/boost_regex/background_information.html index 0830591f..c360f6bb 100644 --- a/doc/html/boost_regex/background_information.html +++ b/doc/html/boost_regex/background_information.html @@ -27,22 +27,21 @@ Background Information
@@ -356,7 +356,7 @@ see the config library documentation.
@@ -401,7 +401,7 @@ will build v9 variants of the regex library named libboost_regex_v9.a etc.
The
-
diff --git a/doc/html/boost_regex/ref.html b/doc/html/boost_regex/ref.html
index d53ffed9..b85609fa 100644
--- a/doc/html/boost_regex/ref.html
+++ b/doc/html/boost_regex/ref.html
@@ -24,84 +24,84 @@
@@ -318,16 +318,14 @@
then a constant with the same name, type and value is declared within the
scope of basic_regex.
-
Effects: Constructs an object of class
Table 1. basic_regex default construction postconditions Table 1. basic_regex default construction postconditions
-
Requires: p shall not
@@ -407,7 +403,7 @@
flags specified in f.
Table 2. Postconditions for basic_regex construction Table 2. Postconditions for basic_regex construction
-
@@ -512,7 +506,7 @@
specified in f.
Table 3. Postconditions for basic_regex construction Table 3. Postconditions for basic_regex construction
-
Requires: p shall not
@@ -616,7 +608,7 @@
according the option flags specified in f.
Table 4. Postconditions for basic_regex construction Table 4. Postconditions for basic_regex construction
-
Effects: Constructs an object of class
- Table 5. Postconditions for basic_regex construction Table 5. Postconditions for basic_regex construction
- Table 6. Postconditions for basic_regex construction Table 6. Postconditions for basic_regex construction
-
Effects: Returns the result of
-
Requires: p shall not
@@ -930,17 +912,13 @@
Effects: Returns the result of
-
Effects: Returns the result of
-
Effects: Returns a pair of iterators denoting
@@ -954,78 +932,58 @@
set. Argument n must be in within the range
-
Effects: Returns a starting iterator to
a sequence of characters representing the regular expression.
-
Effects: Returns termination iterator to
a sequence of characters representing the regular expression.
-
Effects: Returns the length of the sequence
of characters representing the regular expression.
-
Effects: Returns the maximum length of the
sequence of characters representing the regular expression.
-
Effects: Returns true if the object does
not contain a valid regular expression, otherwise false.
-
Effects: Returns the number of marked sub-expressions
within the regular expresion.
-
Effects: Returns
-
Effects: Returns
-
Effects: Returns
- Table 7. Postconditions for basic_regex::assign Table 7. Postconditions for basic_regex::assign
-
Effects: Returns
-
Effects: Returns a copy of the regular
expression syntax flags that were passed to the object's constructor,
or the last call to
-
Effects: Returns zero if the expression
contains a valid regular expression, otherwise an error code. This member
function is retained for use in environments that cannot use exception handling.
-
Effects: Returns a copy of the character
sequence passed to the object's constructor, or the last call to assign.
-
Effects: If
-
Effects: Returns the result of
Postcondition:
-
Effects: Returns the result of
-
Effects: Swaps the contents of the two regular
@@ -1228,9 +1170,7 @@
code that may need to be ported to other implementations of match_flag_type
@@ -54,8 +54,6 @@
-
-
-
-
-
-
+
Synopsis
#include <boost/pattern_except.hpp>
@@ -54,7 +54,7 @@
} // namespace boost
-
+
Description
regex_error(const std::string& s, regex_constants::error_type err, std::ptrdiff_t pos);
diff --git a/doc/html/boost_regex/ref/basic_regex.html b/doc/html/boost_regex/ref/basic_regex.html
index 15817ca9..cb5b8c19 100644
--- a/doc/html/boost_regex/ref/basic_regex.html
+++ b/doc/html/boost_regex/ref/basic_regex.html
@@ -24,10 +24,10 @@
-
+
Synopsis
#include <boost/regex.hpp>
@@ -244,7 +244,7 @@
} // namespace boost
-
+
Description
basic_regex();
+
basic_regex();
basic_regex
.
basic_regex(const charT* p, flag_type f = regex_constants::normal);
+
basic_regex(const charT* p, flag_type f = regex_constants::normal);
basic_regex(const charT* p1, const charT* p2,
+
basic_regex(const charT* p1, const charT* p2,
flag_type f = regex_constants::normal);
basic_regex(const charT* p, size_type len, flag_type f);
+
basic_regex(const charT* p, size_type len, flag_type f);
basic_regex(const basic_regex& e);
+
basic_regex(const basic_regex& e);
basic_regex
as a copy of the object e.
template <class ST, class SA>
+
template <class ST, class SA>
basic_regex(const basic_string<charT, ST, SA>& s,
flag_type f = regex_constants::normal);
@@ -728,7 +716,7 @@
flags specified in f.
template <class ForwardIterator>
+
template <class ForwardIterator>
basic_regex(ForwardIterator first, ForwardIterator last,
flag_type f = regex_constants::normal);
@@ -830,7 +816,7 @@
flags specified in f.
basic_regex& operator=(const basic_regex& e);
+
basic_regex& operator=(const basic_regex& e);
assign(e.str(), e.flags())
.
basic_regex& operator=(const charT* ptr);
+
basic_regex& operator=(const charT* ptr);
assign(ptr)
.
template <class ST, class SA>
+
template <class ST, class SA>
basic_regex& operator=(const basic_string<charT, ST, SA>& p);
assign(p)
.
std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
+
std::pair<const_iterator, const_iterator> subexpression(size_type n) const;
1 <= n
< mark_count()
.
const_iterator begin() const;
+
const_iterator begin() const;
const_iterator end() const;
+
const_iterator end() const;
size_type size() const;
+
size_type size() const;
size_type max_size() const;
+
size_type max_size() const;
bool empty() const;
+
bool empty() const;
size_type mark_count() const;
+
size_type mark_count() const;
basic_regex& assign(const basic_regex& that);
+
basic_regex& assign(const basic_regex& that);
assign(that.str(), that.flags())
.
basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
+
basic_regex& assign(const charT* ptr, flag_type f = regex_constants::normal);
assign(string_type(ptr), f)
.
basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
+
basic_regex& assign(const charT* ptr, unsigned int len, flag_type f);
assign(string_type(ptr, len), f)
.
template <class string_traits, class A>
+
template <class string_traits, class A>
basic_regex& assign(const basic_string<charT, string_traits, A>& s,
flag_type f = regex_constants::normal);
@@ -1044,7 +1002,7 @@
in f.
template <class InputIterator>
+
template <class InputIterator>
basic_regex& assign(InputIterator first, InputIterator last,
flag_type f = regex_constants::normal);
@@ -1140,44 +1096,34 @@
assign(string_type(first, last), f)
.
flag_type flags() const;
+
flag_type flags() const;
assign
.
int status() const;
+
int status() const;
basic_string<charT> str() const;
+
basic_string<charT> str() const;
int compare(basic_regex& e)const;
+
int compare(basic_regex& e)const;
flags() == e.flags()
then returns str().compare(e.str())
,
otherwise returns flags()
- e.flags()
.
locale_type imbue(locale_type l);
+
locale_type imbue(locale_type l);
traits_inst.imbue(l)
where
@@ -1189,9 +1135,7 @@
empty() == true
.
locale_type getloc() const;
+
locale_type getloc() const;
traits_inst.getloc()
@@ -1199,9 +1143,7 @@
initialized) instance of the template parameter traits stored within the
object.
void swap(basic_regex& e) throw();
+
void swap(basic_regex& e) throw();
basic_regex
.
-
-template <class charT, class traits> +template <class charT, class traits> bool operator == (const basic_regex<charT, traits>& lhs, const basic_regex<charT, traits>& rhs);@@ -1238,9 +1178,7 @@ Effects: Returnslhs.compare(rhs) == 0
. --
-template <class charT, class traits> +template <class charT, class traits> bool operator != (const basic_regex<charT, traits>& lhs, const basic_regex<charT, traits>& rhs);@@ -1248,9 +1186,7 @@ Effects: Returnslhs.compare(rhs) != 0
. --
-template <class charT, class traits> +template <class charT, class traits> bool operator < (const basic_regex<charT, traits>& lhs, const basic_regex<charT, traits>& rhs);@@ -1258,9 +1194,7 @@ Effects: Returnslhs.compare(rhs) < 0
. --
-template <class charT, class traits> +template <class charT, class traits> bool operator <= (const basic_regex<charT, traits>& lhs, const basic_regex<charT, traits>& rhs);@@ -1268,9 +1202,7 @@ Effects: Returnslhs.compare(rhs) <= 0
. --
-template <class charT, class traits> +template <class charT, class traits> bool operator >= (const basic_regex<charT, traits>& lhs, const basic_regex<charT, traits>& rhs);@@ -1278,9 +1210,7 @@ Effects: Returnslhs.compare(rhs) >= 0
. --
-template <class charT, class traits> +template <class charT, class traits> bool operator > (const basic_regex<charT, traits>& lhs, const basic_regex<charT, traits>& rhs);@@ -1298,9 +1228,7 @@ outputs the textual representation of the expression to the stream.
-
-template <class charT, class io_traits, class re_traits> +template <class charT, class io_traits, class re_traits> basic_ostream<charT, io_traits>& operator << (basic_ostream<charT, io_traits>& os const basic_regex<charT, re_traits>& e); @@ -1308,9 +1236,7 @@Effects: Returns
-(os << e.str())
.-
-template <class charT, class traits> +template <class charT, class traits> void swap(basic_regex<charT, traits>& lhs, basic_regex<charT, traits>& rhs);diff --git a/doc/html/boost_regex/ref/concepts.html b/doc/html/boost_regex/ref/concepts.html index 26bdbaf0..1c984f05 100644 --- a/doc/html/boost_regex/ref/concepts.html +++ b/doc/html/boost_regex/ref/concepts.html @@ -24,13 +24,13 @@diff --git a/doc/html/boost_regex/ref/concepts/charT_concept.html b/doc/html/boost_regex/ref/concepts/charT_concept.html index 18dd19cd..83f77157 100644 --- a/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -24,7 +24,7 @@Type
charT
used a template diff --git a/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/doc/html/boost_regex/ref/concepts/iterator_concepts.html index 47efedd2..3d12a241 100644 --- a/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -24,7 +24,7 @@diff --git a/doc/html/boost_regex/ref/concepts/traits_concept.html b/doc/html/boost_regex/ref/concepts/traits_concept.html index 213fd1dc..8596e219 100644 --- a/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -24,7 +24,7 @@
@@ -34,7 +34,7 @@ Boost-specific enhanced interface.
- + Minimal requirements.
@@ -105,8 +105,6 @@- -
@@ -127,8 +125,6 @@
- -
diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index b578fa82..97be17f9 100644 --- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -24,8 +24,8 @@
The algorithm regex_format
@@ -34,7 +34,7 @@
previous version of Boost.Regex and will not be further updated:
The algorithm regex_grep
diff --git a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html
index aea2eaf3..48889dae 100644
--- a/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html
+++ b/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html
@@ -24,8 +24,8 @@
The algorithm regex_split
has been deprecated
diff --git a/doc/html/boost_regex/ref/error_type.html b/doc/html/boost_regex/ref/error_type.html
index 505e2b8f..d15f962d 100644
--- a/doc/html/boost_regex/ref/error_type.html
+++ b/doc/html/boost_regex/ref/error_type.html
@@ -24,10 +24,10 @@
@@ -57,7 +57,7 @@ } // namespace boost
diff --git a/doc/html/boost_regex/ref/match_flag_type.html b/doc/html/boost_regex/ref/match_flag_type.html index 82fc95c5..dc312b3a 100644 --- a/doc/html/boost_regex/ref/match_flag_type.html +++ b/doc/html/boost_regex/ref/match_flag_type.html @@ -24,7 +24,7 @@
The type match_flag_type
@@ -69,7 +69,7 @@
} // namespace boost
diff --git a/doc/html/boost_regex/ref/match_results.html b/doc/html/boost_regex/ref/match_results.html index 04928d6b..1eeac81c 100644 --- a/doc/html/boost_regex/ref/match_results.html +++ b/doc/html/boost_regex/ref/match_results.html @@ -24,10 +24,10 @@
#include <boost/regex.hpp> @@ -167,7 +167,7 @@ match_results<BidirectionalIterator, Allocator>& m2);
@@ -175,9 +175,7 @@ a copy of the Allocator argument is used for any memory allocation performed by the constructor or member functions during the lifetime of the object.
--
-match_results(const Allocator& a = Allocator()); +match_results(const Allocator& a = Allocator());Effects: Constructs an object of class @@ -240,17 +238,13 @@
-
-match_results(const match_results& m); +match_results(const match_results& m);Effects: Constructs an object of class match_results, as a copy of m.
--
-match_results& operator=(const match_results& m); +match_results& operator=(const match_results& m);Effects: Assigns m to *this. The postconditions @@ -372,34 +366,26 @@ -
-
-size_type size()const; +size_type size()const;Effects: Returns the number of
-sub_match
elements stored in *this; that is the number of marked sub-expressions in the regular expression that was matched plus one.-
-size_type max_size()const; +size_type max_size()const;Effects: Returns the maximum number of
-sub_match
elements that can be stored in *this.-
-bool empty()const; +bool empty()const;Effects: Returns size() == 0.
--
-difference_type length(int sub = 0)const; +difference_type length(int sub = 0)const; difference_type length(const char_type* sub)const; template <class charT> difference_type length(const charT* sub)const; @@ -432,9 +418,7 @@ as an argument, even when the underlying character type of the expression being matched may be something more exotic such as a Unicode character type. --
-difference_type position(unsigned int sub = 0)const; +difference_type position(unsigned int sub = 0)const; difference_type position(const char_type* sub)const; template <class charT> difference_type position(const charT* sub)const; @@ -470,9 +454,7 @@ as an argument, even when the underlying character type of the expression being matched may be something more exotic such as a Unicode character type. --
-string_type str(int sub = 0)const; +string_type str(int sub = 0)const; string_type str(const char_type* sub)const; template <class Traits, class A> string_type str(const std::basic_string<char_type, Traits, A>& sub)const; @@ -508,9 +490,7 @@ as an argument, even when the underlying character type of the expression being matched may be something more exotic such as a Unicode character type. --
-const_reference operator[](int n) const; +const_reference operator[](int n) const; const_reference operator[](const char_type* n) const; template <class Traits, class A> const_reference operator[](const std::basic_string<char_type, Traits, A>& n) const; @@ -553,9 +533,7 @@ as an argument, even when the underlying character type of the expression being matched may be something more exotic such as a Unicode character type. --
-const_reference prefix()const; +const_reference prefix()const;Requires: that the match_results object @@ -570,9 +548,7 @@ object representing the character sequence from the start of the string being matched or searched, to the start of the match found.
--
-const_reference suffix()const; +const_reference suffix()const;Requires: that the match_results object @@ -587,25 +563,19 @@ object representing the character sequence from the end of the match found to the end of the string being matched or searched.
--
-const_iterator begin()const; +const_iterator begin()const;Effects: Returns a starting iterator that enumerates over all the marked sub-expression matches stored in *this.
--
-const_iterator end()const; +const_iterator end()const;Effects: Returns a terminating iterator that enumerates over all the marked sub-expression matches stored in *this.
--
-template <class OutputIterator, class Formatter> +template <class OutputIterator, class Formatter> OutputIterator format(OutputIterator out, Formatter fmt, match_flag_type flags = format_default); @@ -678,9 +648,7 @@Returns: out.
--
-template <class Formatter> +template <class Formatter> string_type format(Formatter fmt, match_flag_type flags = format_default);@@ -743,17 +711,13 @@See the format syntax guide for more information.
--
-allocator_type get_allocator()const; +allocator_type get_allocator()const;Effects: Returns a copy of the Allocator that was passed to the object's constructor.
--
-void swap(match_results& that); +void swap(match_results& that);Effects: Swaps the contents of the two sequences. @@ -766,9 +730,7 @@
Complexity: constant time.
--
-typedef typename value_type::capture_sequence_type capture_sequence_type; +typedef typename value_type::capture_sequence_type capture_sequence_type;Defines an implementation-specific type that satisfies the requirements of @@ -776,9 +738,7 @@ whose value_type is a
-sub_match<BidirectionalIterator>
. This type happens to bestd::vector<sub_match<BidirectionalIterator> >
, but you shouldn't actually rely on that.-
-const capture_sequence_type& captures(std::size_t i)const; +const capture_sequence_type& captures(std::size_t i)const;Requires: that the match_results object @@ -821,9 +781,7 @@ to take place. -
-
-template <class BidirectionalIterator, class Allocator> +template <class BidirectionalIterator, class Allocator> bool operator == (const match_results<BidirectionalIterator, Allocator>& m1, const match_results<BidirectionalIterator, Allocator>& m2);@@ -831,9 +789,7 @@ Effects: Compares the two sequences for equality. --
-template <class BidirectionalIterator, class Allocator> +template <class BidirectionalIterator, class Allocator> bool operator != (const match_results<BidirectionalIterator, Allocator>& m1, const match_results<BidirectionalIterator, Allocator>& m2);@@ -841,9 +797,7 @@ Effects: Compares the two sequences for inequality. --
-template <class charT, class traits, class BidirectionalIterator, class Allocator> +template <class charT, class traits, class BidirectionalIterator, class Allocator> basic_ostream<charT, traits>& operator << (basic_ostream<charT, traits>& os, const match_results<BidirectionalIterator, Allocator>& m); @@ -854,9 +808,7 @@ << m.str(); Returns os. --
-template <class BidirectionalIterator, class Allocator> +template <class BidirectionalIterator, class Allocator> void swap(match_results<BidirectionalIterator, Allocator>& m1, match_results<BidirectionalIterator, Allocator>& m2);diff --git a/doc/html/boost_regex/ref/non_std_strings.html b/doc/html/boost_regex/ref/non_std_strings.html index 3075e27f..a3b5c261 100644 --- a/doc/html/boost_regex/ref/non_std_strings.html +++ b/doc/html/boost_regex/ref/non_std_strings.html @@ -24,35 +24,35 @@-
- Working With - Unicode and ICU String Types
+- Working With Unicode + and ICU String Types
- -
- Using +
- Using Boost Regex With MFC Strings
-
- - Introduction to Boost.Regex and MFC Strings
-- - Regex Types Used With MFC Strings
-- - Regular Expression Creation From an MFC String
-- - Overloaded Algorithms For MFC String Types
-- - Iterating Over the Matches Within An MFC String
+- Introduction + to Boost.Regex and MFC Strings
+- Regex + Types Used With MFC Strings
+- Regular + Expression Creation From an MFC String
+- Overloaded + Algorithms For MFC String Types
+- Iterating + Over the Matches Within An MFC String
diff --git a/doc/html/boost_regex/ref/non_std_strings/icu.html b/doc/html/boost_regex/ref/non_std_strings/icu.html index 33064423..8af69dca 100644 --- a/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -24,18 +24,18 @@
-
-@@ -464,10 +460,8 @@ equal to buf_size then regerror will have to be called again with a larger buffer.
--
-@@ -534,10 +528,8 @@
-
-diff --git a/doc/html/boost_regex/ref/regex_iterator.html b/doc/html/boost_regex/ref/regex_iterator.html index ca3a0a05..f6fab86c 100644 --- a/doc/html/boost_regex/ref/regex_iterator.html +++ b/doc/html/boost_regex/ref/regex_iterator.html @@ -24,7 +24,7 @@
The iterator type regex_iterator
will enumerate all
@@ -78,7 +78,7 @@
regex_constants::match_flag_type m = regex_constants::match_default);
@@ -86,17 +86,13 @@ is constructed from a pair of iterators, and enumerates all occurrences of a regular expression within that iterator range.
--
-regex_iterator(); +regex_iterator();Effects: constructs an end of sequence
-regex_iterator
.-
-regex_iterator(BidirectionalIterator a, BidirectionalIterator b, +regex_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, match_flag_type m = match_default);@@ -114,9 +110,7 @@ matcher exhausts its permitted memory allocation (if Boost.Regex is configured in non-recursive mode). --
-regex_iterator(const regex_iterator& that); +regex_iterator(const regex_iterator& that);Effects: constructs a copy of
that
. @@ -124,9 +118,7 @@Postconditions:
-*this == that
.-
-regex_iterator& operator=(const regex_iterator&); +regex_iterator& operator=(const regex_iterator&);Effects: sets
*this
equal to those inthat
. @@ -134,24 +126,18 @@Postconditions: *this == that.
--
-bool operator==(const regex_iterator& that)const; +bool operator==(const regex_iterator& that)const;Effects: returns true if *this is equal to that.
--
-bool operator!=(const regex_iterator&)const; +bool operator!=(const regex_iterator&)const;Effects: returns
-!(*this == that)
.-
-const value_type& operator*()const; +const value_type& operator*()const;Effects: dereferencing a
regex_iterator
object it yields @@ -374,16 +360,12 @@
-
-const value_type* operator->()const; +const value_type* operator->()const;Effects: returns
-&(*this)
.-
-regex_iterator& operator++(); +regex_iterator& operator++();Effects: moves the iterator to the next @@ -406,9 +388,7 @@
Returns: *this.
--
-regex_iterator operator++(int); +regex_iterator operator++(int);Effects: constructs a copy result of
*this
, then @@ -417,9 +397,7 @@Returns: result.
--
-template <class charT, class traits> +template <class charT, class traits> regex_iterator<const charT*, charT, traits> make_regex_iterator(const charT* p, const basic_regex<charT, traits>& e, regex_constants::match_flag_type m = regex_constants::match_default); @@ -437,7 +415,7 @@ m.- + Examples
diff --git a/doc/html/boost_regex/ref/regex_match.html b/doc/html/boost_regex/ref/regex_match.html index c97ab0e3..bdd5d505 100644 --- a/doc/html/boost_regex/ref/regex_match.html +++ b/doc/html/boost_regex/ref/regex_match.html @@ -24,7 +24,7 @@
#include <boost/regex.hpp>@@ -80,7 +80,7 @@ match_flag_type flags = match_default);- + Description
template <class BidirectionalIterator, class Allocator, class charT, class traits> @@ -361,7 +361,7 @@ Effects: Returns the result ofregex_match(s.begin(), s.end(), e, flags)
.- + Examples
diff --git a/doc/html/boost_regex/ref/regex_replace.html b/doc/html/boost_regex/ref/regex_replace.html index 7e564a8a..8df0fae8 100644 --- a/doc/html/boost_regex/ref/regex_replace.html +++ b/doc/html/boost_regex/ref/regex_replace.html @@ -24,7 +24,7 @@
#include <boost/regex.hpp>@@ -53,7 +53,7 @@ match_flag_type flags = match_default);- + Description
template <class OutputIterator, class BidirectionalIterator, class traits, class Formatter> @@ -199,7 +199,7 @@ and then returnsresult
.- + Examples
diff --git a/doc/html/boost_regex/ref/regex_search.html b/doc/html/boost_regex/ref/regex_search.html index 89010e94..a3b6db4b 100644 --- a/doc/html/boost_regex/ref/regex_search.html +++ b/doc/html/boost_regex/ref/regex_search.html @@ -24,7 +24,7 @@
#include <boost/regex.hpp>@@ -73,7 +73,7 @@ match_flag_type flags = match_default);- + Description
template <class BidirectionalIterator, class Allocator, class charT, class traits> @@ -357,7 +357,7 @@ Effects: Returns the result ofregex_search(s.begin(), s.end(), e, flags)
.- + Examples
diff --git a/doc/html/boost_regex/ref/regex_token_iterator.html b/doc/html/boost_regex/ref/regex_token_iterator.html index d55be4a8..b6adc6ba 100644 --- a/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/doc/html/boost_regex/ref/regex_token_iterator.html @@ -24,7 +24,7 @@
The template class
regex_token_iterator
is an iterator @@ -136,19 +136,15 @@ regex_constants::match_flag_type m = regex_constants::match_default);- + Description
--
-regex_token_iterator(); +regex_token_iterator();Effects: constructs an end of sequence iterator.
--
-regex_token_iterator(BidirectionalIterator a, +regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, int submatch = 0, @@ -176,9 +172,7 @@ matcher exhausts its permitted memory allocation (if Boost.Regex is configured in non-recursive mode). --
-regex_token_iterator(BidirectionalIterator a, +regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, const std::vector<int>& submatches, @@ -210,9 +204,7 @@ matcher exhausts its permitted memory allocation (if Boost.Regex is configured in non-recursive mode). --
-template <std::size_t N> +template <std::size_t N> regex_token_iterator(BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, @@ -243,9 +235,7 @@ matcher exhausts its permitted memory allocation (if Boost.Regex is configured in non-recursive mode). --
-regex_token_iterator(const regex_token_iterator& that); +regex_token_iterator(const regex_token_iterator& that);Effects: constructs a copy of
that
. @@ -253,9 +243,7 @@Postconditions:
-*this == that
.-
-regex_token_iterator& operator=(const regex_token_iterator& that); +regex_token_iterator& operator=(const regex_token_iterator& that);Effects: sets
*this
to be equal tothat
. @@ -263,38 +251,28 @@Postconditions:
-*this == that
.-
-bool operator==(const regex_token_iterator&)const; +bool operator==(const regex_token_iterator&)const;Effects: returns true if
-*this
is the same position asthat
.-
-bool operator!=(const regex_token_iterator&)const; +bool operator!=(const regex_token_iterator&)const;Effects: returns
-!(*this == that)
.-
-const value_type& operator*()const; +const value_type& operator*()const;Effects: returns the current character sequence being enumerated.
--
-const value_type* operator->()const; +const value_type* operator->()const;Effects: returns
-&(*this)
.-
-regex_token_iterator& operator++(); +regex_token_iterator& operator++();Effects: Moves on to the next character @@ -311,9 +289,7 @@
Returns:
-*this
.-
-regex_token_iterator& operator++(int); +regex_token_iterator& operator++(int);Effects: constructs a copy result of
*this
, then @@ -322,9 +298,7 @@Returns: result.
--
-template <class charT, class traits> +template <class charT, class traits> regex_token_iterator<const charT*, charT, traits> make_regex_token_iterator( const charT* p, @@ -383,7 +357,7 @@ m.- + Examples
diff --git a/doc/html/boost_regex/ref/regex_traits.html b/doc/html/boost_regex/ref/regex_traits.html index 1c464aa9..36ebcebb 100644 --- a/doc/html/boost_regex/ref/regex_traits.html +++ b/doc/html/boost_regex/ref/regex_traits.html @@ -24,7 +24,7 @@
namespace boost{ @@ -46,7 +46,7 @@ } // namespace boost- + Description
diff --git a/doc/html/boost_regex/ref/sub_match.html b/doc/html/boost_regex/ref/sub_match.html index 10c59c7d..e8ed8911 100644 --- a/doc/html/boost_regex/ref/sub_match.html +++ b/doc/html/boost_regex/ref/sub_match.html @@ -24,7 +24,7 @@
#include <boost/regex.hpp>@@ -329,74 +329,56 @@ } // namespace boost- + Description
- + Members
--
-typedef typename std::iterator_traits<iterator>::value_type value_type; +typedef typename std::iterator_traits<iterator>::value_type value_type;The type pointed to by the iterators.
--
-typedef typename std::iterator_traits<iterator>::difference_type difference_type; +typedef typename std::iterator_traits<iterator>::difference_type difference_type;A type that represents the difference between two iterators.
--
-typedef BidirectionalIterator iterator; +typedef BidirectionalIterator iterator;The iterator type.
--
-iterator first +iterator firstAn iterator denoting the position of the start of the match.
--
-iterator second +iterator secondAn iterator denoting the position of the end of the match.
--
-bool matched +bool matchedA Boolean value denoting whether this sub-expression participated in the match.
--
-static difference_type length(); +static difference_type length();Effects: returns the length of this matched sub-expression, or 0 if this sub-expression was not matched:
-matched ? distance(first, second) : 0)
.-
-operator basic_string<value_type>()const; +operator basic_string<value_type>()const;Effects: converts
-*this
into a string: returns(matched ? basic_string<value_type>(first, second) : basic_string<value_type>())
.-
-basic_string<value_type> str()const; +basic_string<value_type> str()const;Effects: returns a string representation @@ -404,33 +386,25 @@
-(matched ? basic_string<value_type>(first, second) : basic_string<value_type>())
.-
-int compare(const sub_match& s)const; +int compare(const sub_match& s)const;Effects: performs a lexical comparison to s: returns
-str().compare(s.str())
.-
-int compare(const basic_string<value_type>& s)const; +int compare(const basic_string<value_type>& s)const;Effects: compares
-*this
to the string s: returnsstr().compare(s)
.-
-int compare(const value_type* s)const; +int compare(const value_type* s)const;Effects: compares
-*this
to the null-terminated string s: returnsstr().compare(s)
.-
-typedef implementation-private capture_sequence_type; +typedef implementation-private capture_sequence_type;Defines an implementation-specific type that satisfies the requirements of @@ -438,9 +412,7 @@ whose value_type is a
-sub_match<BidirectionalIterator>
. This type happens to bestd::vector<sub_match<BidirectionalIterator> >
, but you shouldn't actually rely on that.-
-const capture_sequence_type& captures()const; +const capture_sequence_type& captures()const;Effects: returns a sequence containing all @@ -474,13 +446,11 @@
- + sub_match non-member operators
--
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator == (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -488,9 +458,7 @@ Effects: returnslhs.compare(rhs) == 0
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator != (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -498,9 +466,7 @@ Effects: returnslhs.compare(rhs) != 0
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator < (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -508,9 +474,7 @@ Effects: returnslhs.compare(rhs) < 0
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator <= (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -518,9 +482,7 @@ Effects: returnslhs.compare(rhs) <= 0
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator >= (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -528,9 +490,7 @@ Effects: returnslhs.compare(rhs) >= 0
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator > (const sub_match<BidirectionalIterator>& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -538,9 +498,7 @@ Effects: returnslhs.compare(rhs) > 0
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator == (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, @@ -550,9 +508,7 @@ Effects: returnslhs == rhs.str()
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator != (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, @@ -562,9 +518,7 @@ Effects: returnslhs != rhs.str()
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator < (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, @@ -574,9 +528,7 @@ Effects: returnslhs < rhs.str()
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator > (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, @@ -586,9 +538,7 @@ Effects: returnslhs > rhs.str()
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator >= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, @@ -598,9 +548,7 @@ Effects: returnslhs >= rhs.str()
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator <= (const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, Allocator>& lhs, @@ -610,9 +558,7 @@ Effects: returnslhs <= rhs.str()
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator == (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, @@ -622,9 +568,7 @@ Effects: returnslhs.str() == rhs
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator != (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, @@ -634,9 +578,7 @@ Effects: returnslhs.str() != rhs
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator < (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, @@ -646,9 +588,7 @@ Effects: returnslhs.str() < rhs
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator > (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, @@ -658,9 +598,7 @@ Effects: returnslhs.str() > rhs
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator >= (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, @@ -670,9 +608,7 @@ Effects: returnslhs.str() >= rhs
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> bool operator <= (const sub_match<BidirectionalIterator>& lhs, const std::basic_string<iterator_traits<BidirectionalIterator>::value_type, traits, @@ -682,9 +618,7 @@ Effects: returnslhs.str() <= rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs);@@ -692,9 +626,7 @@ Effects: returnslhs == rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs);@@ -702,9 +634,7 @@ Effects: returnslhs != rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs);@@ -712,9 +642,7 @@ Effects: returnslhs < rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs);@@ -722,9 +650,7 @@ Effects: returnslhs > rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs);@@ -732,9 +658,7 @@ Effects: returnslhs >= rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const* lhs, const sub_match<BidirectionalIterator>& rhs);@@ -742,9 +666,7 @@ Effects: returnslhs <= rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator == (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs);@@ -752,9 +674,7 @@ Effects: returnslhs.str() == rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator != (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs);@@ -762,9 +682,7 @@ Effects: returnslhs.str() != rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator < (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs);@@ -772,9 +690,7 @@ Effects: returnslhs.str() < rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator > (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs);@@ -782,9 +698,7 @@ Effects: returnslhs.str() > rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator >= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs);@@ -792,9 +706,7 @@ Effects: returnslhs.str() >= rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator <= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const* rhs);@@ -802,9 +714,7 @@ Effects: returnslhs.str() <= rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator == (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -812,9 +722,7 @@ Effects: returnslhs == rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator != (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -822,9 +730,7 @@ Effects: returnslhs != rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator < (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -832,9 +738,7 @@ Effects: returnslhs < rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator > (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -842,9 +746,7 @@ Effects: returnslhs > rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator >= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -852,9 +754,7 @@ Effects: returnslhs >= rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator <= (typename iterator_traits<BidirectionalIterator>::value_type const& lhs, const sub_match<BidirectionalIterator>& rhs);@@ -862,9 +762,7 @@ Effects: returnslhs <= rhs.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator == (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs);@@ -872,9 +770,7 @@ Effects: returnslhs.str() == rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator != (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs);@@ -882,9 +778,7 @@ Effects: returnslhs.str() != rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator < (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs);@@ -892,9 +786,7 @@ Effects: returnslhs.str() < rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator > (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs);@@ -902,9 +794,7 @@ Effects: returnslhs.str() > rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator >= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs);@@ -912,9 +802,7 @@ Effects: returnslhs.str() >= rhs
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> bool operator <= (const sub_match<BidirectionalIterator>& lhs, typename iterator_traits<BidirectionalIterator>::value_type const& rhs);@@ -927,9 +815,7 @@ to any type to which you can add astd::string
and obtain a new string as the result. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator> operator + (const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, @@ -940,9 +826,7 @@ Effects: returnss + m.str()
. --
-template <class BidirectionalIterator, class traits, class Allocator> +template <class BidirectionalIterator, class traits, class Allocator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, traits, Allocator> operator + (const sub_match<BidirectionalIterator>& m, const std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type, @@ -953,9 +837,7 @@ Effects: returnsm.str() + s
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> operator + (typename iterator_traits<BidirectionalIterator>::value_type const* s, const sub_match<BidirectionalIterator>& m); @@ -964,9 +846,7 @@ Effects: returnss + m.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> operator + (const sub_match<BidirectionalIterator>& m, typename iterator_traits<BidirectionalIterator>::value_type const * s); @@ -975,9 +855,7 @@ Effects: returnsm.str() + s
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> operator + (typename iterator_traits<BidirectionalIterator>::value_type const& s, const sub_match<BidirectionalIterator>& m); @@ -986,9 +864,7 @@ Effects: returnss + m.str()
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> operator + (const sub_match<BidirectionalIterator>& m, typename iterator_traits<BidirectionalIterator>::value_type const& s); @@ -997,9 +873,7 @@ Effects: returnsm.str() + s
. --
-template <class BidirectionalIterator> +template <class BidirectionalIterator> std::basic_string<typename iterator_traits<BidirectionalIterator>::value_type> operator + (const sub_match<BidirectionalIterator>& m1, const sub_match<BidirectionalIterator>& m2); @@ -1009,12 +883,10 @@ + m2.str().- + Stream inserter
--
-template <class charT, class traits, class BidirectionalIterator> +template <class charT, class traits, class BidirectionalIterator> basic_ostream<charT, traits>& operator << (basic_ostream<charT, traits>& os const sub_match<BidirectionalIterator>& m); diff --git a/doc/html/boost_regex/ref/syntax_option_type.html b/doc/html/boost_regex/ref/syntax_option_type.html index 9510fb20..b4811c1c 100644 --- a/doc/html/boost_regex/ref/syntax_option_type.html +++ b/doc/html/boost_regex/ref/syntax_option_type.html @@ -24,21 +24,21 @@-
- - syntax_option_type Synopsis
-- - Overview of syntax_option_type
-- - Options for Perl Regular Expressions
-- - Options for POSIX Extended Regular Expressions
-- - Options for POSIX Basic Regular Expressions
-- - Options for Literal Strings
+- syntax_option_type + Synopsis
+- Overview + of syntax_option_type
+- Options + for Perl Regular Expressions
+- Options + for POSIX Extended Regular Expressions
+- Options + for POSIX Basic Regular Expressions
+- Options + for Literal Strings
@@ -227,7 +225,7 @@ cab will match either of "abd" or "abef".
@@ -274,7 +272,7 @@ cab
range a-c
.
@@ -337,7 +335,7 @@ cab
[[:digit:]a-c[.NUL.]]
.
@@ -363,7 +361,7 @@ cab extensions are also supported by Boost.Regex:
\p{digit}
.
@@ -1137,7 +1135,7 @@ cab used with the -E option.
@@ -1151,7 +1149,7 @@ cab these by default anyway.
@@ -1164,7 +1162,7 @@ cab modify how the case and locale sensitivity are to be applied.
diff --git a/doc/html/boost_regex/syntax/basic_syntax.html b/doc/html/boost_regex/syntax/basic_syntax.html index c9a465fc..9680dab0 100644 --- a/doc/html/boost_regex/syntax/basic_syntax.html +++ b/doc/html/boost_regex/syntax/basic_syntax.html @@ -24,11 +24,11 @@
@@ -42,10 +42,8 @@ // e2 a case insensitive POSIX-Basic expression: boost::regex e2(my_expression, boost::regex::basic|boost::regex::icase); -
-
-.[\*^$
@@ -73,7 +71,7 @@
@@ -85,7 +83,7 @@ of an expression, or the last character of a sub-expression.
@@ -155,7 +153,7 @@ aaaa to.
@@ -173,7 +171,7 @@ aaaa
aaabba
@@ -220,7 +218,7 @@ aaaa range a-c.
@@ -284,7 +282,7 @@ aaaa
[[:digit:]a-c[.NUL.]].
@@ -299,7 +297,7 @@ aaaa will match either a literal '\' or a '^'.
-
-@@ -333,7 +329,7 @@ aaaa As its name suggests, this behavior is consistent with the Unix utility grep.
@@ -613,7 +609,7 @@ aaaa leftmost-longest rule.
@@ -627,7 +623,7 @@ aaaa options modify how the case and locale sensitivity are to be applied.
diff --git a/doc/html/boost_regex/syntax/character_classes.html b/doc/html/boost_regex/syntax/character_classes.html index 8ad7008e..dbb2444a 100644 --- a/doc/html/boost_regex/syntax/character_classes.html +++ b/doc/html/boost_regex/syntax/character_classes.html @@ -24,14 +24,14 @@
- - |
@@ -64,8 +62,6 @@ | ||||
- - |
@@ -75,8 +71,6 @@ | ||||
- - |
diff --git a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html index d53272ca..88821b72 100644 --- a/doc/html/boost_regex/syntax/character_classes/std_char_clases.html +++ b/doc/html/boost_regex/syntax/character_classes/std_char_clases.html @@ -24,8 +24,8 @@ The following character class names are always supported by Boost.Regex: diff --git a/doc/html/boost_regex/syntax/collating_names.html b/doc/html/boost_regex/syntax/collating_names.html index 2c1b4786..a638aff1 100644 --- a/doc/html/boost_regex/syntax/collating_names.html +++ b/doc/html/boost_regex/syntax/collating_names.html @@ -24,14 +24,14 @@ - + "Single character" character classes:@@ -894,7 +894,7 @@ |
\p{digit}
.
@@ -1021,7 +1021,7 @@
\B
Matches only when not at a word boundary.
@@ -1048,7 +1048,7 @@
(?=\n?\z)
.
@@ -1083,7 +1083,7 @@ followed by a sequence of zero or more combining characters.
(?>\x0D\x0A?|[\x0A-\x0C\x85\x{2028}\x{2029}])
.
(?
.
match_results
member functions.
(?# ... )
is treated as a comment, it's contents are ignored.
@@ -1168,7 +1168,7 @@ pattern only.
@@ -1199,7 +1199,7 @@ # 1 2 2 3 2 3 4
@@ -1222,7 +1222,7 @@ could be used to validate the password.
@@ -1236,7 +1236,7 @@ (pattern must be of fixed length).
@@ -1543,7 +1543,7 @@
and JScript
are all synonyms for perl
.
@@ -1555,7 +1555,7 @@ are to be applied.
no_mod_s
.
diff --git a/doc/html/boost_regex/unicode.html b/doc/html/boost_regex/unicode.html index c82a5558..97eef55f 100644 --- a/doc/html/boost_regex/unicode.html +++ b/doc/html/boost_regex/unicode.html @@ -24,13 +24,13 @@
Copyright © 1998 -2010 John Maddock
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)
@@ -39,164 +39,163 @@Table of Contents
- A printer-friendly PDF + A printer-friendly PDF version of this manual is also available.
Last revised: September 20, 2010 at 16:52:36 GMT |
+Last revised: January 01, 2011 at 12:24:16 GMT |