libstdc++
regex.h
Go to the documentation of this file.
1 // class template regex -*- C++ -*-
2 
3 // Copyright (C) 2010-2014 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10 
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
19 
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
24 
25 /**
26  * @file bits/regex.h
27  * This is an internal header file, included by other library headers.
28  * Do not attempt to use it directly. @headername{regex}
29  */
30 
31 namespace std _GLIBCXX_VISIBILITY(default)
32 {
33 _GLIBCXX_BEGIN_NAMESPACE_VERSION
34  template<typename, typename>
35  class basic_regex;
36 
37  template<typename, typename>
39 
40 _GLIBCXX_END_NAMESPACE_VERSION
41 
42 namespace __detail
43 {
44 _GLIBCXX_BEGIN_NAMESPACE_VERSION
45 
46  enum class _RegexExecutorPolicy : int
47  { _S_auto, _S_alternate };
48 
49  template<typename _BiIter, typename _Alloc,
50  typename _CharT, typename _TraitsT,
51  _RegexExecutorPolicy __policy,
52  bool __match_mode>
53  bool
54  __regex_algo_impl(_BiIter __s,
55  _BiIter __e,
59 
60  template<typename, typename, typename, bool>
61  class _Executor;
62 
63  template<typename _TraitsT>
65  __compile_nfa(const typename _TraitsT::char_type* __first,
66  const typename _TraitsT::char_type* __last,
67  const _TraitsT& __traits,
69 
70 _GLIBCXX_END_NAMESPACE_VERSION
71 }
72 
73 _GLIBCXX_BEGIN_NAMESPACE_VERSION
74 
75  /**
76  * @addtogroup regex
77  * @{
78  */
79 
80  /**
81  * @brief Describes aspects of a regular expression.
82  *
83  * A regular expression traits class that satisfies the requirements of
84  * section [28.7].
85  *
86  * The class %regex is parameterized around a set of related types and
87  * functions used to complete the definition of its semantics. This class
88  * satisfies the requirements of such a traits class.
89  */
90  template<typename _Ch_type>
91  struct regex_traits
92  {
93  public:
94  typedef _Ch_type char_type;
96  typedef std::locale locale_type;
97  private:
98  struct _RegexMask
99  {
100  typedef typename std::ctype<char_type>::mask _BaseType;
101  _BaseType _M_base;
102  unsigned char _M_extended;
103  static constexpr unsigned char _S_under = 1 << 0;
104  // FIXME: _S_blank should be removed in the future,
105  // when locale's complete.
106  static constexpr unsigned char _S_blank = 1 << 1;
107  static constexpr unsigned char _S_valid_mask = 0x3;
108 
109  constexpr _RegexMask(_BaseType __base = 0,
110  unsigned char __extended = 0)
111  : _M_base(__base), _M_extended(__extended)
112  { }
113 
114  constexpr _RegexMask
115  operator&(_RegexMask __other) const
116  {
117  return _RegexMask(_M_base & __other._M_base,
118  _M_extended & __other._M_extended);
119  }
120 
121  constexpr _RegexMask
122  operator|(_RegexMask __other) const
123  {
124  return _RegexMask(_M_base | __other._M_base,
125  _M_extended | __other._M_extended);
126  }
127 
128  constexpr _RegexMask
129  operator^(_RegexMask __other) const
130  {
131  return _RegexMask(_M_base ^ __other._M_base,
132  _M_extended ^ __other._M_extended);
133  }
134 
135  constexpr _RegexMask
136  operator~() const
137  { return _RegexMask(~_M_base, ~_M_extended); }
138 
139  _RegexMask&
140  operator&=(_RegexMask __other)
141  { return *this = (*this) & __other; }
142 
143  _RegexMask&
144  operator|=(_RegexMask __other)
145  { return *this = (*this) | __other; }
146 
147  _RegexMask&
148  operator^=(_RegexMask __other)
149  { return *this = (*this) ^ __other; }
150 
151  constexpr bool
152  operator==(_RegexMask __other) const
153  {
154  return (_M_extended & _S_valid_mask)
155  == (__other._M_extended & _S_valid_mask)
156  && _M_base == __other._M_base;
157  }
158 
159  constexpr bool
160  operator!=(_RegexMask __other) const
161  { return !((*this) == __other); }
162 
163  };
164  public:
165  typedef _RegexMask char_class_type;
166 
167  public:
168  /**
169  * @brief Constructs a default traits object.
170  */
172 
173  /**
174  * @brief Gives the length of a C-style string starting at @p __p.
175  *
176  * @param __p a pointer to the start of a character sequence.
177  *
178  * @returns the number of characters between @p *__p and the first
179  * default-initialized value of type @p char_type. In other words, uses
180  * the C-string algorithm for determining the length of a sequence of
181  * characters.
182  */
183  static std::size_t
184  length(const char_type* __p)
185  { return string_type::traits_type::length(__p); }
186 
187  /**
188  * @brief Performs the identity translation.
189  *
190  * @param __c A character to the locale-specific character set.
191  *
192  * @returns __c.
193  */
194  char_type
195  translate(char_type __c) const
196  { return __c; }
197 
198  /**
199  * @brief Translates a character into a case-insensitive equivalent.
200  *
201  * @param __c A character to the locale-specific character set.
202  *
203  * @returns the locale-specific lower-case equivalent of __c.
204  * @throws std::bad_cast if the imbued locale does not support the ctype
205  * facet.
206  */
207  char_type
208  translate_nocase(char_type __c) const
209  {
210  typedef std::ctype<char_type> __ctype_type;
211  const __ctype_type& __fctyp(use_facet<__ctype_type>(_M_locale));
212  return __fctyp.tolower(__c);
213  }
214 
215  /**
216  * @brief Gets a sort key for a character sequence.
217  *
218  * @param __first beginning of the character sequence.
219  * @param __last one-past-the-end of the character sequence.
220  *
221  * Returns a sort key for the character sequence designated by the
222  * iterator range [F1, F2) such that if the character sequence [G1, G2)
223  * sorts before the character sequence [H1, H2) then
224  * v.transform(G1, G2) < v.transform(H1, H2).
225  *
226  * What this really does is provide a more efficient way to compare a
227  * string to multiple other strings in locales with fancy collation
228  * rules and equivalence classes.
229  *
230  * @returns a locale-specific sort key equivalent to the input range.
231  *
232  * @throws std::bad_cast if the current locale does not have a collate
233  * facet.
234  */
235  template<typename _Fwd_iter>
236  string_type
237  transform(_Fwd_iter __first, _Fwd_iter __last) const
238  {
239  typedef std::collate<char_type> __collate_type;
240  const __collate_type& __fclt(use_facet<__collate_type>(_M_locale));
241  string_type __s(__first, __last);
242  return __fclt.transform(__s.data(), __s.data() + __s.size());
243  }
244 
245  /**
246  * @brief Gets a sort key for a character sequence, independent of case.
247  *
248  * @param __first beginning of the character sequence.
249  * @param __last one-past-the-end of the character sequence.
250  *
251  * Effects: if typeid(use_facet<collate<_Ch_type> >) ==
252  * typeid(collate_byname<_Ch_type>) and the form of the sort key
253  * returned by collate_byname<_Ch_type>::transform(__first, __last)
254  * is known and can be converted into a primary sort key
255  * then returns that key, otherwise returns an empty string.
256  *
257  * @todo Implement this function correctly.
258  */
259  template<typename _Fwd_iter>
260  string_type
261  transform_primary(_Fwd_iter __first, _Fwd_iter __last) const
262  {
263  // TODO : this is not entirely correct.
264  // This function requires extra support from the platform.
265  //
266  // Read http://gcc.gnu.org/ml/libstdc++/2013-09/msg00117.html and
267  // http://www.open-std.org/Jtc1/sc22/wg21/docs/papers/2003/n1429.htm
268  // for details.
269  typedef std::ctype<char_type> __ctype_type;
270  const __ctype_type& __fctyp(use_facet<__ctype_type>(_M_locale));
271  std::vector<char_type> __s(__first, __last);
272  __fctyp.tolower(__s.data(), __s.data() + __s.size());
273  return this->transform(__s.data(), __s.data() + __s.size());
274  }
275 
276  /**
277  * @brief Gets a collation element by name.
278  *
279  * @param __first beginning of the collation element name.
280  * @param __last one-past-the-end of the collation element name.
281  *
282  * @returns a sequence of one or more characters that represents the
283  * collating element consisting of the character sequence designated by
284  * the iterator range [__first, __last). Returns an empty string if the
285  * character sequence is not a valid collating element.
286  */
287  template<typename _Fwd_iter>
288  string_type
289  lookup_collatename(_Fwd_iter __first, _Fwd_iter __last) const;
290 
291  /**
292  * @brief Maps one or more characters to a named character
293  * classification.
294  *
295  * @param __first beginning of the character sequence.
296  * @param __last one-past-the-end of the character sequence.
297  * @param __icase ignores the case of the classification name.
298  *
299  * @returns an unspecified value that represents the character
300  * classification named by the character sequence designated by
301  * the iterator range [__first, __last). If @p icase is true,
302  * the returned mask identifies the classification regardless of
303  * the case of the characters to be matched (for example,
304  * [[:lower:]] is the same as [[:alpha:]]), otherwise a
305  * case-dependent classification is returned. The value
306  * returned shall be independent of the case of the characters
307  * in the character sequence. If the name is not recognized then
308  * returns a value that compares equal to 0.
309  *
310  * At least the following names (or their wide-character equivalent) are
311  * supported.
312  * - d
313  * - w
314  * - s
315  * - alnum
316  * - alpha
317  * - blank
318  * - cntrl
319  * - digit
320  * - graph
321  * - lower
322  * - print
323  * - punct
324  * - space
325  * - upper
326  * - xdigit
327  */
328  template<typename _Fwd_iter>
329  char_class_type
330  lookup_classname(_Fwd_iter __first, _Fwd_iter __last,
331  bool __icase = false) const;
332 
333  /**
334  * @brief Determines if @p c is a member of an identified class.
335  *
336  * @param __c a character.
337  * @param __f a class type (as returned from lookup_classname).
338  *
339  * @returns true if the character @p __c is a member of the classification
340  * represented by @p __f, false otherwise.
341  *
342  * @throws std::bad_cast if the current locale does not have a ctype
343  * facet.
344  */
345  bool
346  isctype(_Ch_type __c, char_class_type __f) const;
347 
348  /**
349  * @brief Converts a digit to an int.
350  *
351  * @param __ch a character representing a digit.
352  * @param __radix the radix if the numeric conversion (limited to 8, 10,
353  * or 16).
354  *
355  * @returns the value represented by the digit __ch in base radix if the
356  * character __ch is a valid digit in base radix; otherwise returns -1.
357  */
358  int
359  value(_Ch_type __ch, int __radix) const;
360 
361  /**
362  * @brief Imbues the regex_traits object with a copy of a new locale.
363  *
364  * @param __loc A locale.
365  *
366  * @returns a copy of the previous locale in use by the regex_traits
367  * object.
368  *
369  * @note Calling imbue with a different locale than the one currently in
370  * use invalidates all cached data held by *this.
371  */
372  locale_type
373  imbue(locale_type __loc)
374  {
375  std::swap(_M_locale, __loc);
376  return __loc;
377  }
378 
379  /**
380  * @brief Gets a copy of the current locale in use by the regex_traits
381  * object.
382  */
383  locale_type
384  getloc() const
385  { return _M_locale; }
386 
387  protected:
388  locale_type _M_locale;
389  };
390 
391  // [7.8] Class basic_regex
392  /**
393  * Objects of specializations of this class represent regular expressions
394  * constructed from sequences of character type @p _Ch_type.
395  *
396  * Storage for the regular expression is allocated and deallocated as
397  * necessary by the member functions of this class.
398  */
399  template<typename _Ch_type, typename _Rx_traits = regex_traits<_Ch_type>>
400  class basic_regex
401  {
402  public:
403  static_assert(is_same<_Ch_type, typename _Rx_traits::char_type>::value,
404  "regex traits class must have the same char_type");
405 
406  // types:
407  typedef _Ch_type value_type;
408  typedef _Rx_traits traits_type;
409  typedef typename traits_type::string_type string_type;
410  typedef regex_constants::syntax_option_type flag_type;
411  typedef typename traits_type::locale_type locale_type;
412 
413  /**
414  * @name Constants
415  * std [28.8.1](1)
416  */
417  //@{
418  static constexpr flag_type icase = regex_constants::icase;
419  static constexpr flag_type nosubs = regex_constants::nosubs;
420  static constexpr flag_type optimize = regex_constants::optimize;
421  static constexpr flag_type collate = regex_constants::collate;
422  static constexpr flag_type ECMAScript = regex_constants::ECMAScript;
423  static constexpr flag_type basic = regex_constants::basic;
424  static constexpr flag_type extended = regex_constants::extended;
425  static constexpr flag_type awk = regex_constants::awk;
426  static constexpr flag_type grep = regex_constants::grep;
427  static constexpr flag_type egrep = regex_constants::egrep;
428  //@}
429 
430  // [7.8.2] construct/copy/destroy
431  /**
432  * Constructs a basic regular expression that does not match any
433  * character sequence.
434  */
435  basic_regex()
436  : _M_flags(ECMAScript), _M_automaton(nullptr)
437  { }
438 
439  /**
440  * @brief Constructs a basic regular expression from the
441  * sequence [__p, __p + char_traits<_Ch_type>::length(__p))
442  * interpreted according to the flags in @p __f.
443  *
444  * @param __p A pointer to the start of a C-style null-terminated string
445  * containing a regular expression.
446  * @param __f Flags indicating the syntax rules and options.
447  *
448  * @throws regex_error if @p __p is not a valid regular expression.
449  */
450  explicit
451  basic_regex(const _Ch_type* __p, flag_type __f = ECMAScript)
452  : basic_regex(__p, __p + _Rx_traits::length(__p), __f)
453  { }
454 
455  /**
456  * @brief Constructs a basic regular expression from the sequence
457  * [p, p + len) interpreted according to the flags in @p f.
458  *
459  * @param __p A pointer to the start of a string containing a regular
460  * expression.
461  * @param __len The length of the string containing the regular
462  * expression.
463  * @param __f Flags indicating the syntax rules and options.
464  *
465  * @throws regex_error if @p __p is not a valid regular expression.
466  */
467  basic_regex(const _Ch_type* __p, std::size_t __len,
468  flag_type __f = ECMAScript)
469  : basic_regex(__p, __p + __len, __f)
470  { }
471 
472  /**
473  * @brief Copy-constructs a basic regular expression.
474  *
475  * @param __rhs A @p regex object.
476  */
477  basic_regex(const basic_regex& __rhs)
478  : _M_flags(__rhs._M_flags), _M_original_str(__rhs._M_original_str)
479  { this->imbue(__rhs.getloc()); }
480 
481  /**
482  * @brief Move-constructs a basic regular expression.
483  *
484  * @param __rhs A @p regex object.
485  *
486  * The implementation is a workaround concerning ABI compatibility. See:
487  * https://gcc.gnu.org/ml/libstdc++/2014-09/msg00067.html
488  */
489  basic_regex(basic_regex&& __rhs)
490  : _M_flags(__rhs._M_flags),
491  _M_original_str(std::move(__rhs._M_original_str))
492  {
493  this->imbue(__rhs.getloc());
494  __rhs._M_automaton.reset();
495  }
496 
497  /**
498  * @brief Constructs a basic regular expression from the string
499  * @p s interpreted according to the flags in @p f.
500  *
501  * @param __s A string containing a regular expression.
502  * @param __f Flags indicating the syntax rules and options.
503  *
504  * @throws regex_error if @p __s is not a valid regular expression.
505  */
506  template<typename _Ch_traits, typename _Ch_alloc>
507  explicit
508  basic_regex(const std::basic_string<_Ch_type, _Ch_traits,
509  _Ch_alloc>& __s,
510  flag_type __f = ECMAScript)
511  : basic_regex(__s.begin(), __s.end(), __f)
512  { }
513 
514  /**
515  * @brief Constructs a basic regular expression from the range
516  * [first, last) interpreted according to the flags in @p f.
517  *
518  * @param __first The start of a range containing a valid regular
519  * expression.
520  * @param __last The end of a range containing a valid regular
521  * expression.
522  * @param __f The format flags of the regular expression.
523  *
524  * @throws regex_error if @p [__first, __last) is not a valid regular
525  * expression.
526  */
527  template<typename _FwdIter>
528  basic_regex(_FwdIter __first, _FwdIter __last,
529  flag_type __f = ECMAScript)
530  : _M_flags(__f),
531  _M_original_str(__first, __last),
532  _M_automaton(__detail::__compile_nfa(_M_original_str.c_str(),
533  _M_original_str.c_str()
534  + _M_original_str.size(),
535  _M_traits,
536  _M_flags))
537  { }
538 
539  /**
540  * @brief Constructs a basic regular expression from an initializer list.
541  *
542  * @param __l The initializer list.
543  * @param __f The format flags of the regular expression.
544  *
545  * @throws regex_error if @p __l is not a valid regular expression.
546  */
547  basic_regex(initializer_list<_Ch_type> __l, flag_type __f = ECMAScript)
548  : basic_regex(__l.begin(), __l.end(), __f)
549  { }
550 
551  /**
552  * @brief Destroys a basic regular expression.
553  */
554  ~basic_regex()
555  { }
556 
557  /**
558  * @brief Assigns one regular expression to another.
559  */
560  basic_regex&
561  operator=(const basic_regex& __rhs)
562  { return this->assign(__rhs); }
563 
564  /**
565  * @brief Move-assigns one regular expression to another.
566  *
567  * The implementation is a workaround concerning ABI compatibility. See:
568  * https://gcc.gnu.org/ml/libstdc++/2014-09/msg00067.html
569  */
570  basic_regex&
571  operator=(basic_regex&& __rhs)
572  { return this->assign(std::move(__rhs)); }
573 
574  /**
575  * @brief Replaces a regular expression with a new one constructed from
576  * a C-style null-terminated string.
577  *
578  * @param __p A pointer to the start of a null-terminated C-style string
579  * containing a regular expression.
580  */
581  basic_regex&
582  operator=(const _Ch_type* __p)
583  { return this->assign(__p, flags()); }
584 
585  /**
586  * @brief Replaces a regular expression with a new one constructed from
587  * a string.
588  *
589  * @param __s A pointer to a string containing a regular expression.
590  */
591  template<typename _Ch_typeraits, typename _Alloc>
592  basic_regex&
593  operator=(const basic_string<_Ch_type, _Ch_typeraits, _Alloc>& __s)
594  { return this->assign(__s, flags()); }
595 
596  // [7.8.3] assign
597  /**
598  * @brief the real assignment operator.
599  *
600  * @param __rhs Another regular expression object.
601  */
602  basic_regex&
603  assign(const basic_regex& __rhs)
604  {
605  _M_flags = __rhs._M_flags;
606  _M_original_str = __rhs._M_original_str;
607  this->imbue(__rhs.getloc());
608  return *this;
609  }
610 
611  /**
612  * @brief The move-assignment operator.
613  *
614  * @param __rhs Another regular expression object.
615  *
616  * The implementation is a workaround concerning ABI compatibility. See:
617  * https://gcc.gnu.org/ml/libstdc++/2014-09/msg00067.html
618  */
619  basic_regex&
620  assign(basic_regex&& __rhs)
621  {
622  _M_flags = __rhs._M_flags;
623  _M_original_str = std::move(__rhs._M_original_str);
624  __rhs._M_automaton.reset();
625  this->imbue(__rhs.getloc());
626  }
627 
628  /**
629  * @brief Assigns a new regular expression to a regex object from a
630  * C-style null-terminated string containing a regular expression
631  * pattern.
632  *
633  * @param __p A pointer to a C-style null-terminated string containing
634  * a regular expression pattern.
635  * @param __flags Syntax option flags.
636  *
637  * @throws regex_error if __p does not contain a valid regular
638  * expression pattern interpreted according to @p __flags. If
639  * regex_error is thrown, *this remains unchanged.
640  */
641  basic_regex&
642  assign(const _Ch_type* __p, flag_type __flags = ECMAScript)
643  { return this->assign(string_type(__p), __flags); }
644 
645  /**
646  * @brief Assigns a new regular expression to a regex object from a
647  * C-style string containing a regular expression pattern.
648  *
649  * @param __p A pointer to a C-style string containing a
650  * regular expression pattern.
651  * @param __len The length of the regular expression pattern string.
652  * @param __flags Syntax option flags.
653  *
654  * @throws regex_error if p does not contain a valid regular
655  * expression pattern interpreted according to @p __flags. If
656  * regex_error is thrown, *this remains unchanged.
657  */
658  basic_regex&
659  assign(const _Ch_type* __p, std::size_t __len, flag_type __flags)
660  { return this->assign(string_type(__p, __len), __flags); }
661 
662  /**
663  * @brief Assigns a new regular expression to a regex object from a
664  * string containing a regular expression pattern.
665  *
666  * @param __s A string containing a regular expression pattern.
667  * @param __flags Syntax option flags.
668  *
669  * @throws regex_error if __s does not contain a valid regular
670  * expression pattern interpreted according to @p __flags. If
671  * regex_error is thrown, *this remains unchanged.
672  */
673  template<typename _Ch_typeraits, typename _Alloc>
674  basic_regex&
675  assign(const basic_string<_Ch_type, _Ch_typeraits, _Alloc>& __s,
676  flag_type __flags = ECMAScript)
677  {
678  _M_flags = __flags;
679  _M_original_str.assign(__s.begin(), __s.end());
680  auto __p = _M_original_str.c_str();
681  _M_automaton = __detail::__compile_nfa(__p,
682  __p + _M_original_str.size(),
683  _M_traits, _M_flags);
684  return *this;
685  }
686 
687  /**
688  * @brief Assigns a new regular expression to a regex object.
689  *
690  * @param __first The start of a range containing a valid regular
691  * expression.
692  * @param __last The end of a range containing a valid regular
693  * expression.
694  * @param __flags Syntax option flags.
695  *
696  * @throws regex_error if p does not contain a valid regular
697  * expression pattern interpreted according to @p __flags. If
698  * regex_error is thrown, the object remains unchanged.
699  */
700  template<typename _InputIterator>
701  basic_regex&
702  assign(_InputIterator __first, _InputIterator __last,
703  flag_type __flags = ECMAScript)
704  { return this->assign(string_type(__first, __last), __flags); }
705 
706  /**
707  * @brief Assigns a new regular expression to a regex object.
708  *
709  * @param __l An initializer list representing a regular expression.
710  * @param __flags Syntax option flags.
711  *
712  * @throws regex_error if @p __l does not contain a valid
713  * regular expression pattern interpreted according to @p
714  * __flags. If regex_error is thrown, the object remains
715  * unchanged.
716  */
717  basic_regex&
718  assign(initializer_list<_Ch_type> __l, flag_type __flags = ECMAScript)
719  { return this->assign(__l.begin(), __l.end(), __flags); }
720 
721  // [7.8.4] const operations
722  /**
723  * @brief Gets the number of marked subexpressions within the regular
724  * expression.
725  */
726  unsigned int
727  mark_count() const
728  { return _M_automaton->_M_sub_count() - 1; }
729 
730  /**
731  * @brief Gets the flags used to construct the regular expression
732  * or in the last call to assign().
733  */
734  flag_type
735  flags() const
736  { return _M_flags; }
737 
738  // [7.8.5] locale
739  /**
740  * @brief Imbues the regular expression object with the given locale.
741  *
742  * @param __loc A locale.
743  */
744  locale_type
745  imbue(locale_type __loc)
746  {
747  auto __ret = _M_traits.imbue(__loc);
748  this->assign(_M_original_str, _M_flags);
749  return __ret;
750  }
751 
752  /**
753  * @brief Gets the locale currently imbued in the regular expression
754  * object.
755  */
756  locale_type
757  getloc() const
758  { return _M_traits.getloc(); }
759 
760  // [7.8.6] swap
761  /**
762  * @brief Swaps the contents of two regular expression objects.
763  *
764  * @param __rhs Another regular expression object.
765  */
766  void
767  swap(basic_regex& __rhs)
768  {
769  std::swap(_M_flags, __rhs._M_flags);
770  std::swap(_M_original_str, __rhs._M_original_str);
771  this->imbue(__rhs.imbue(this->getloc()));
772  }
773 
774 #ifdef _GLIBCXX_DEBUG
775  void
776  _M_dot(std::ostream& __ostr)
777  { _M_automaton->_M_dot(__ostr); }
778 #endif
779 
780  protected:
781  typedef std::shared_ptr<__detail::_NFA<_Rx_traits>> _AutomatonPtr;
782 
783  template<typename _Bp, typename _Ap, typename _Cp, typename _Rp,
784  __detail::_RegexExecutorPolicy, bool>
785  friend bool
786  __detail::__regex_algo_impl(_Bp, _Bp, match_results<_Bp, _Ap>&,
787  const basic_regex<_Cp, _Rp>&,
789 
790  template<typename, typename, typename, bool>
791  friend class __detail::_Executor;
792 
793  flag_type _M_flags;
794  _Rx_traits _M_traits;
795  basic_string<_Ch_type> _M_original_str;
796  _AutomatonPtr _M_automaton;
797  };
798 
799  /** @brief Standard regular expressions. */
801 
802 #ifdef _GLIBCXX_USE_WCHAR_T
803  /** @brief Standard wide-character regular expressions. */
805 #endif
806 
807 
808  // [7.8.6] basic_regex swap
809  /**
810  * @brief Swaps the contents of two regular expression objects.
811  * @param __lhs First regular expression.
812  * @param __rhs Second regular expression.
813  */
814  template<typename _Ch_type, typename _Rx_traits>
815  inline void
818  { __lhs.swap(__rhs); }
819 
820 
821  // [7.9] Class template sub_match
822  /**
823  * A sequence of characters matched by a particular marked sub-expression.
824  *
825  * An object of this class is essentially a pair of iterators marking a
826  * matched subexpression within a regular expression pattern match. Such
827  * objects can be converted to and compared with std::basic_string objects
828  * of a similar base character type as the pattern matched by the regular
829  * expression.
830  *
831  * The iterators that make up the pair are the usual half-open interval
832  * referencing the actual original pattern matched.
833  */
834  template<typename _BiIter>
835  class sub_match : public std::pair<_BiIter, _BiIter>
836  {
837  typedef iterator_traits<_BiIter> __iter_traits;
838 
839  public:
840  typedef typename __iter_traits::value_type value_type;
841  typedef typename __iter_traits::difference_type difference_type;
842  typedef _BiIter iterator;
843  typedef std::basic_string<value_type> string_type;
844 
845  bool matched;
846 
847  constexpr sub_match() : matched() { }
848 
849  /**
850  * Gets the length of the matching sequence.
851  */
852  difference_type
853  length() const
854  { return this->matched ? std::distance(this->first, this->second) : 0; }
855 
856  /**
857  * @brief Gets the matching sequence as a string.
858  *
859  * @returns the matching sequence as a string.
860  *
861  * This is the implicit conversion operator. It is identical to the
862  * str() member function except that it will want to pop up in
863  * unexpected places and cause a great deal of confusion and cursing
864  * from the unwary.
865  */
866  operator string_type() const
867  {
868  return this->matched
869  ? string_type(this->first, this->second)
870  : string_type();
871  }
872 
873  /**
874  * @brief Gets the matching sequence as a string.
875  *
876  * @returns the matching sequence as a string.
877  */
878  string_type
879  str() const
880  {
881  return this->matched
882  ? string_type(this->first, this->second)
883  : string_type();
884  }
885 
886  /**
887  * @brief Compares this and another matched sequence.
888  *
889  * @param __s Another matched sequence to compare to this one.
890  *
891  * @retval <0 this matched sequence will collate before @p __s.
892  * @retval =0 this matched sequence is equivalent to @p __s.
893  * @retval <0 this matched sequence will collate after @p __s.
894  */
895  int
896  compare(const sub_match& __s) const
897  { return this->str().compare(__s.str()); }
898 
899  /**
900  * @brief Compares this sub_match to a string.
901  *
902  * @param __s A string to compare to this sub_match.
903  *
904  * @retval <0 this matched sequence will collate before @p __s.
905  * @retval =0 this matched sequence is equivalent to @p __s.
906  * @retval <0 this matched sequence will collate after @p __s.
907  */
908  int
909  compare(const string_type& __s) const
910  { return this->str().compare(__s); }
911 
912  /**
913  * @brief Compares this sub_match to a C-style string.
914  *
915  * @param __s A C-style string to compare to this sub_match.
916  *
917  * @retval <0 this matched sequence will collate before @p __s.
918  * @retval =0 this matched sequence is equivalent to @p __s.
919  * @retval <0 this matched sequence will collate after @p __s.
920  */
921  int
922  compare(const value_type* __s) const
923  { return this->str().compare(__s); }
924  };
925 
926 
927  /** @brief Standard regex submatch over a C-style null-terminated string. */
929 
930  /** @brief Standard regex submatch over a standard string. */
932 
933 #ifdef _GLIBCXX_USE_WCHAR_T
934  /** @brief Regex submatch over a C-style null-terminated wide string. */
936 
937  /** @brief Regex submatch over a standard wide string. */
939 #endif
940 
941  // [7.9.2] sub_match non-member operators
942 
943  /**
944  * @brief Tests the equivalence of two regular expression submatches.
945  * @param __lhs First regular expression submatch.
946  * @param __rhs Second regular expression submatch.
947  * @returns true if @a __lhs is equivalent to @a __rhs, false otherwise.
948  */
949  template<typename _BiIter>
950  inline bool
951  operator==(const sub_match<_BiIter>& __lhs, const sub_match<_BiIter>& __rhs)
952  { return __lhs.compare(__rhs) == 0; }
953 
954  /**
955  * @brief Tests the inequivalence of two regular expression submatches.
956  * @param __lhs First regular expression submatch.
957  * @param __rhs Second regular expression submatch.
958  * @returns true if @a __lhs is not equivalent to @a __rhs, false otherwise.
959  */
960  template<typename _BiIter>
961  inline bool
962  operator!=(const sub_match<_BiIter>& __lhs, const sub_match<_BiIter>& __rhs)
963  { return __lhs.compare(__rhs) != 0; }
964 
965  /**
966  * @brief Tests the ordering of two regular expression submatches.
967  * @param __lhs First regular expression submatch.
968  * @param __rhs Second regular expression submatch.
969  * @returns true if @a __lhs precedes @a __rhs, false otherwise.
970  */
971  template<typename _BiIter>
972  inline bool
973  operator<(const sub_match<_BiIter>& __lhs, const sub_match<_BiIter>& __rhs)
974  { return __lhs.compare(__rhs) < 0; }
975 
976  /**
977  * @brief Tests the ordering of two regular expression submatches.
978  * @param __lhs First regular expression submatch.
979  * @param __rhs Second regular expression submatch.
980  * @returns true if @a __lhs does not succeed @a __rhs, false otherwise.
981  */
982  template<typename _BiIter>
983  inline bool
984  operator<=(const sub_match<_BiIter>& __lhs, const sub_match<_BiIter>& __rhs)
985  { return __lhs.compare(__rhs) <= 0; }
986 
987  /**
988  * @brief Tests the ordering of two regular expression submatches.
989  * @param __lhs First regular expression submatch.
990  * @param __rhs Second regular expression submatch.
991  * @returns true if @a __lhs does not precede @a __rhs, false otherwise.
992  */
993  template<typename _BiIter>
994  inline bool
996  { return __lhs.compare(__rhs) >= 0; }
997 
998  /**
999  * @brief Tests the ordering of two regular expression submatches.
1000  * @param __lhs First regular expression submatch.
1001  * @param __rhs Second regular expression submatch.
1002  * @returns true if @a __lhs succeeds @a __rhs, false otherwise.
1003  */
1004  template<typename _BiIter>
1005  inline bool
1007  { return __lhs.compare(__rhs) > 0; }
1008 
1009  // Alias for sub_match'd string.
1010  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1011  using __sub_match_string = basic_string<
1012  typename iterator_traits<_Bi_iter>::value_type,
1013  _Ch_traits, _Ch_alloc>;
1014 
1015  /**
1016  * @brief Tests the equivalence of a string and a regular expression
1017  * submatch.
1018  * @param __lhs A string.
1019  * @param __rhs A regular expression submatch.
1020  * @returns true if @a __lhs is equivalent to @a __rhs, false otherwise.
1021  */
1022  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1023  inline bool
1025  const sub_match<_Bi_iter>& __rhs)
1026  { return __rhs.compare(__lhs.c_str()) == 0; }
1027 
1028  /**
1029  * @brief Tests the inequivalence of a string and a regular expression
1030  * submatch.
1031  * @param __lhs A string.
1032  * @param __rhs A regular expression submatch.
1033  * @returns true if @a __lhs is not equivalent to @a __rhs, false otherwise.
1034  */
1035  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1036  inline bool
1038  const sub_match<_Bi_iter>& __rhs)
1039  { return !(__lhs == __rhs); }
1040 
1041  /**
1042  * @brief Tests the ordering of a string and a regular expression submatch.
1043  * @param __lhs A string.
1044  * @param __rhs A regular expression submatch.
1045  * @returns true if @a __lhs precedes @a __rhs, false otherwise.
1046  */
1047  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1048  inline bool
1049  operator<(const __sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>& __lhs,
1050  const sub_match<_Bi_iter>& __rhs)
1051  { return __rhs.compare(__lhs.c_str()) > 0; }
1052 
1053  /**
1054  * @brief Tests the ordering of a string and a regular expression submatch.
1055  * @param __lhs A string.
1056  * @param __rhs A regular expression submatch.
1057  * @returns true if @a __lhs succeeds @a __rhs, false otherwise.
1058  */
1059  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1060  inline bool
1062  const sub_match<_Bi_iter>& __rhs)
1063  { return __rhs < __lhs; }
1064 
1065  /**
1066  * @brief Tests the ordering of a string and a regular expression submatch.
1067  * @param __lhs A string.
1068  * @param __rhs A regular expression submatch.
1069  * @returns true if @a __lhs does not precede @a __rhs, false otherwise.
1070  */
1071  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1072  inline bool
1074  const sub_match<_Bi_iter>& __rhs)
1075  { return !(__lhs < __rhs); }
1076 
1077  /**
1078  * @brief Tests the ordering of a string and a regular expression submatch.
1079  * @param __lhs A string.
1080  * @param __rhs A regular expression submatch.
1081  * @returns true if @a __lhs does not succeed @a __rhs, false otherwise.
1082  */
1083  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1084  inline bool
1085  operator<=(const __sub_match_string<_Bi_iter, _Ch_traits, _Ch_alloc>& __lhs,
1086  const sub_match<_Bi_iter>& __rhs)
1087  { return !(__rhs < __lhs); }
1088 
1089  /**
1090  * @brief Tests the equivalence of a regular expression submatch and a
1091  * string.
1092  * @param __lhs A regular expression submatch.
1093  * @param __rhs A string.
1094  * @returns true if @a __lhs is equivalent to @a __rhs, false otherwise.
1095  */
1096  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1097  inline bool
1098  operator==(const sub_match<_Bi_iter>& __lhs,
1100  { return __lhs.compare(__rhs.c_str()) == 0; }
1101 
1102  /**
1103  * @brief Tests the inequivalence of a regular expression submatch and a
1104  * string.
1105  * @param __lhs A regular expression submatch.
1106  * @param __rhs A string.
1107  * @returns true if @a __lhs is not equivalent to @a __rhs, false otherwise.
1108  */
1109  template<typename _Bi_iter, typename _Ch_traits, typename _Ch_alloc>
1110  inline bool
1111  operator!=(const sub_match<_Bi_iter>& __lhs,
1113  { return !(__lhs == __rhs); }
1114 
1115  /**
1116  * @brief Tests the ordering of a regular expression submatch and a string.
1117  * @param __lhs A regular expression submatch.
1118  * @param __rhs A string.
1119  * @returns true if @a __lhs precedes @a __rhs, false otherwise.
1120  */
1121  template<typename _Bi_iter, class _Ch_traits, class _Ch_alloc>
1122  inline bool
1123  operator<(const sub_match<_Bi_iter>& __lhs,
1125  { return __lhs.compare(__rhs.c_str()) < 0; }
1126 
1127  /**
1128  * @brief Tests the ordering of a regular expression submatch and a string.
1129  * @param __lhs A regular expression submatch.
1130  * @param __rhs A string.
1131  * @returns true if @a __lhs succeeds @a __rhs, false otherwise.
1132  */
1133  template<typename _Bi_iter, class _Ch_traits, class _Ch_alloc>
1134  inline bool
1137  { return __rhs < __lhs; }
1138 
1139  /**
1140  * @brief Tests the ordering of a regular expression submatch and a string.
1141  * @param __lhs A regular expression submatch.
1142  * @param __rhs A string.
1143  * @returns true if @a __lhs does not precede @a __rhs, false otherwise.
1144  */
1145  template<typename _Bi_iter, class _Ch_traits, class _Ch_alloc>
1146  inline bool
1149  { return !(__lhs < __rhs); }
1150 
1151  /**
1152  * @brief Tests the ordering of a regular expression submatch and a string.
1153  * @param __lhs A regular expression submatch.
1154  * @param __rhs A string.
1155  * @returns true if @a __lhs does not succeed @a __rhs, false otherwise.
1156  */
1157  template<typename _Bi_iter, class _Ch_traits, class _Ch_alloc>
1158  inline bool
1159  operator<=(const sub_match<_Bi_iter>& __lhs,
1161  { return !(__rhs < __lhs); }
1162 
1163  /**
1164  * @brief Tests the equivalence of a C string and a regular expression
1165  * submatch.
1166  * @param __lhs A C string.
1167  * @param __rhs A regular expression submatch.
1168  * @returns true if @a __lhs is equivalent to @a __rhs, false otherwise.
1169  */
1170  template<typename _Bi_iter>
1171  inline bool
1172  operator==(typename iterator_traits<_Bi_iter>::value_type const* __lhs,
1173  const sub_match<_Bi_iter>& __rhs)
1174  { return __rhs.compare(__lhs) == 0; }
1175 
1176  /**
1177  * @brief Tests the inequivalence of an iterator value and a regular
1178  * expression submatch.
1179  * @param __lhs A regular expression submatch.
1180  * @param __rhs A string.
1181  * @returns true if @a __lhs is not equivalent to @a __rhs, false otherwise.
1182  */
1183  template<typename _Bi_iter>
1184  inline bool
1185  operator!=(typename iterator_traits<_Bi_iter>::value_type const* __lhs,
1186  const sub_match<_Bi_iter>& __rhs)
1187  { return !(__lhs == __rhs); }
1188 
1189  /**
1190  * @brief Tests the ordering of a string and a regular expression submatch.
1191  * @param __lhs A string.
1192  * @param __rhs A regular expression submatch.
1193  * @returns true if @a __lhs precedes @a __rhs, false otherwise.
1194  */
1195  template<typename _Bi_iter>
1196  inline bool
1197  operator<(typename iterator_traits<_Bi_iter>::value_type const* __lhs,
1198  const sub_match<_Bi_iter>& __rhs)
1199  { return __rhs.compare(__lhs) > 0; }
1200 
1201  /**
1202  * @brief Tests the ordering of a string and a regular expression submatch.
1203  * @param __lhs A string.
1204  * @param __rhs A regular expression submatch.
1205  * @returns true if @a __lhs succeeds @a __rhs, false otherwise.
1206  */
1207  template<typename _Bi_iter>
1208  inline bool
1209  operator>(typename iterator_traits<_Bi_iter>::value_type const* __lhs,
1210  const sub_match<_Bi_iter>& __rhs)
1211  { return __rhs < __lhs; }
1212 
1213  /**
1214  * @brief Tests the ordering of a string and a regular expression submatch.
1215  * @param __lhs A string.
1216  * @param __rhs A regular expression submatch.
1217  * @returns true if @a __lhs does not precede @a __rhs, false otherwise.
1218  */
1219  template<typename _Bi_iter>
1220  inline bool
1221  operator>=(typename iterator_traits<_Bi_iter>::value_type const* __lhs,
1222  const sub_match<_Bi_iter>& __rhs)
1223  { return !(__lhs < __rhs); }
1224 
1225  /**
1226  * @brief Tests the ordering of a string and a regular expression submatch.
1227  * @param __lhs A string.
1228  * @param __rhs A regular expression submatch.
1229  * @returns true if @a __lhs does not succeed @a __rhs, false otherwise.
1230  */
1231  template<typename _Bi_iter>
1232  inline bool
1233  operator<=(typename iterator_traits<_Bi_iter>::value_type const* __lhs,
1234  const sub_match<_Bi_iter>& __rhs)
1235  { return !(__rhs < __lhs); }
1236 
1237  /**
1238  * @brief Tests the equivalence of a regular expression submatch and a
1239  * string.
1240  * @param __lhs A regular expression submatch.
1241  * @param __rhs A pointer to a string?
1242  * @returns true if @a __lhs is equivalent to @a __rhs, false otherwise.
1243  */
1244  template<typename _Bi_iter>
1245  inline bool
1246  operator==(const sub_match<_Bi_iter>& __lhs,
1247  typename iterator_traits<_Bi_iter>::value_type const* __rhs)
1248  { return __lhs.compare(__rhs) == 0; }
1249 
1250  /**
1251  * @brief Tests the inequivalence of a regular expression submatch and a
1252  * string.
1253  * @param __lhs A regular expression submatch.
1254  * @param __rhs A pointer to a string.
1255  * @returns true if @a __lhs is not equivalent to @a __rhs, false otherwise.
1256  */
1257  template<typename _Bi_iter>
1258  inline bool
1259  operator!=(const sub_match<_Bi_iter>& __lhs,
1260  typename iterator_traits<_Bi_iter>::value_type const* __rhs)
1261  { return !(__lhs == __rhs); }
1262 
1263  /**
1264  * @brief Tests the ordering of a regular expression submatch and a string.
1265  * @param __lhs A regular expression submatch.
1266  * @param __rhs A string.
1267  * @returns true if @a __lhs precedes @a __rhs, false otherwise.
1268  */
1269  template<typename _Bi_iter>
1270  inline bool
1271  operator<(const sub_match<_Bi_iter>& __lhs,
1272  typename iterator_traits<_Bi_iter>::value_type const* __rhs)
1273  { return __lhs.compare(__rhs) < 0; }
1274 
1275  /**
1276  * @brief Tests the ordering of a regular expression submatch and a string.
1277  * @param __lhs A regular expression submatch.
1278  * @param __rhs A string.
1279  * @returns true if @a __lhs succeeds @a __rhs, false otherwise.
1280  */
1281  template<typename _Bi_iter>
1282  inline bool
1284  typename iterator_traits<_Bi_iter>::value_type const* __rhs)
1285  { return __rhs < __lhs; }
1286 
1287  /**
1288  * @brief Tests the ordering of a regular expression submatch and a string.
1289  * @param __lhs A regular expression submatch.
1290  * @param __rhs A string.
1291  * @returns true if @a __lhs does not precede @a __rhs, false otherwise.
1292  */
1293  template<typename _Bi_iter>
1294  inline bool
1296  typename iterator_traits<_Bi_iter>::value_type const* __rhs)
1297  { return !(__lhs < __rhs); }
1298 
1299  /**
1300  * @brief Tests the ordering of a regular expression submatch and a string.
1301  * @param __lhs A regular expression submatch.
1302  * @param __rhs A string.
1303  * @returns true if @a __lhs does not succeed @a __rhs, false otherwise.
1304  */
1305  template<typename _Bi_iter>
1306  inline bool
1307  operator<=(const sub_match<_Bi_iter>& __lhs,
1308  typename iterator_traits<_Bi_iter>::value_type const* __rhs)
1309  { return !(__rhs < __lhs); }
1310 
1311  /**
1312  * @brief Tests the equivalence of a string and a regular expression
1313  * submatch.
1314  * @param __lhs A string.
1315  * @param __rhs A regular expression submatch.
1316  * @returns true if @a __lhs is equivalent to @a __rhs, false otherwise.
1317  */
1318  template<typename _Bi_iter>
1319  inline bool
1320  operator==(typename iterator_traits<_Bi_iter>::value_type const& __lhs,
1321  const sub_match<_Bi_iter>& __rhs)
1322  {
1323  typedef typename sub_match<_Bi_iter>::string_type string_type;
1324  return __rhs.compare(string_type(1, __lhs)) == 0;
1325  }
1326 
1327  /**
1328  * @brief Tests the inequivalence of a string and a regular expression
1329  * submatch.
1330  * @param __lhs A string.
1331  * @param __rhs A regular expression submatch.
1332  * @returns true if @a __lhs is not equivalent to @a __rhs, false otherwise.
1333  */
1334  template<typename _Bi_iter>
1335  inline bool
1336  operator!=(typename iterator_traits<_Bi_iter>::value_type const& __lhs,
1337  const sub_match<_Bi_iter>& __rhs)
1338  { return !(__lhs == __rhs); }
1339 
1340  /**
1341  * @brief Tests the ordering of a string and a regular expression submatch.
1342  * @param __lhs A string.
1343  * @param __rhs A regular expression submatch.
1344  * @returns true if @a __lhs precedes @a __rhs, false otherwise.
1345  */
1346  template<typename _Bi_iter>
1347  inline bool
1348  operator<(typename iterator_traits<_Bi_iter>::value_type const& __lhs,
1349  const sub_match<_Bi_iter>& __rhs)
1350  {
1351  typedef typename sub_match<_Bi_iter>::string_type string_type;
1352  return __rhs.compare(string_type(1, __lhs)) > 0;
1353  }
1354 
1355  /**
1356  * @brief Tests the ordering of a string and a regular expression submatch.
1357  * @param __lhs A string.
1358  * @param __rhs A regular expression submatch.
1359  * @returns true if @a __lhs succeeds @a __rhs, false otherwise.
1360  */
1361  template<typename _Bi_iter>
1362  inline bool
1363  operator>(typename iterator_traits<_Bi_iter>::value_type const& __lhs,
1364  const sub_match<_Bi_iter>& __rhs)
1365  { return __rhs < __lhs; }
1366 
1367  /**
1368  * @brief Tests the ordering of a string and a regular expression submatch.
1369  * @param __lhs A string.
1370  * @param __rhs A regular expression submatch.
1371  * @returns true if @a __lhs does not precede @a __rhs, false otherwise.
1372  */
1373  template<typename _Bi_iter>
1374  inline bool
1375  operator>=(typename iterator_traits<_Bi_iter>::value_type const& __lhs,
1376  const sub_match<_Bi_iter>& __rhs)
1377  { return !(__lhs < __rhs); }
1378 
1379  /**
1380  * @brief Tests the ordering of a string and a regular expression submatch.
1381  * @param __lhs A string.
1382  * @param __rhs A regular expression submatch.
1383  * @returns true if @a __lhs does not succeed @a __rhs, false otherwise.
1384  */
1385  template<typename _Bi_iter>
1386  inline bool
1387  operator<=(typename iterator_traits<_Bi_iter>::value_type const& __lhs,
1388  const sub_match<_Bi_iter>& __rhs)
1389  { return !(__rhs < __lhs); }
1390 
1391  /**
1392  * @brief Tests the equivalence of a regular expression submatch and a
1393  * string.
1394  * @param __lhs A regular expression submatch.
1395  * @param __rhs A const string reference.
1396  * @returns true if @a __lhs is equivalent to @a __rhs, false otherwise.
1397  */
1398  template<typename _Bi_iter>
1399  inline bool
1400  operator==(const sub_match<_Bi_iter>& __lhs,
1401  typename iterator_traits<_Bi_iter>::value_type const& __rhs)
1402  {
1403  typedef typename sub_match<_Bi_iter>::string_type string_type;
1404  return __lhs.compare(string_type(1, __rhs)) == 0;
1405  }
1406 
1407  /**
1408  * @brief Tests the inequivalence of a regular expression submatch and a
1409  * string.
1410  * @param __lhs A regular expression submatch.
1411  * @param __rhs A const string reference.
1412  * @returns true if @a __lhs is not equivalent to @a __rhs, false otherwise.
1413  */
1414  template<typename _Bi_iter>
1415  inline bool
1416  operator!=(const sub_match<_Bi_iter>& __lhs,
1417  typename iterator_traits<_Bi_iter>::value_type const& __rhs)
1418  { return !(__lhs == __rhs); }
1419 
1420  /**
1421  * @brief Tests the ordering of a regular expression submatch and a string.
1422  * @param __lhs A regular expression submatch.
1423  * @param __rhs A const string reference.
1424  * @returns true if @a __lhs precedes @a __rhs, false otherwise.
1425  */
1426  template<typename _Bi_iter>
1427  inline bool
1428  operator<(const sub_match<_Bi_iter>& __lhs,
1429  typename iterator_traits<_Bi_iter>::value_type const& __rhs)
1430  {
1431  typedef typename sub_match<_Bi_iter>::string_type string_type;
1432  return __lhs.compare(string_type(1, __rhs)) < 0;
1433  }
1434 
1435  /**
1436  * @brief Tests the ordering of a regular expression submatch and a string.
1437  * @param __lhs A regular expression submatch.
1438  * @param __rhs A const string reference.
1439  * @returns true if @a __lhs succeeds @a __rhs, false otherwise.
1440  */
1441  template<typename _Bi_iter>
1442  inline bool
1444  typename iterator_traits<_Bi_iter>::value_type const& __rhs)
1445  { return __rhs < __lhs; }
1446 
1447  /**
1448  * @brief Tests the ordering of a regular expression submatch and a string.
1449  * @param __lhs A regular expression submatch.
1450  * @param __rhs A const string reference.
1451  * @returns true if @a __lhs does not precede @a __rhs, false otherwise.
1452  */
1453  template<typename _Bi_iter>
1454  inline bool
1456  typename iterator_traits<_Bi_iter>::value_type const& __rhs)
1457  { return !(__lhs < __rhs); }
1458 
1459  /**
1460  * @brief Tests the ordering of a regular expression submatch and a string.
1461  * @param __lhs A regular expression submatch.
1462  * @param __rhs A const string reference.
1463  * @returns true if @a __lhs does not succeed @a __rhs, false otherwise.
1464  */
1465  template<typename _Bi_iter>
1466  inline bool
1467  operator<=(const sub_match<_Bi_iter>& __lhs,
1468  typename iterator_traits<_Bi_iter>::value_type const& __rhs)
1469  { return !(__rhs < __lhs); }
1470 
1471  /**
1472  * @brief Inserts a matched string into an output stream.
1473  *
1474  * @param __os The output stream.
1475  * @param __m A submatch string.
1476  *
1477  * @returns the output stream with the submatch string inserted.
1478  */
1479  template<typename _Ch_type, typename _Ch_traits, typename _Bi_iter>
1480  inline
1481  basic_ostream<_Ch_type, _Ch_traits>&
1482  operator<<(basic_ostream<_Ch_type, _Ch_traits>& __os,
1483  const sub_match<_Bi_iter>& __m)
1484  { return __os << __m.str(); }
1485 
1486  // [7.10] Class template match_results
1487 
1488  /*
1489  * Special sub_match object representing an unmatched sub-expression.
1490  */
1491  template<typename _Bi_iter>
1492  inline const sub_match<_Bi_iter>&
1493  __unmatched_sub()
1494  {
1495  static const sub_match<_Bi_iter> __unmatched = sub_match<_Bi_iter>();
1496  return __unmatched;
1497  }
1498 
1499  /**
1500  * @brief The results of a match or search operation.
1501  *
1502  * A collection of character sequences representing the result of a regular
1503  * expression match. Storage for the collection is allocated and freed as
1504  * necessary by the member functions of class template match_results.
1505  *
1506  * This class satisfies the Sequence requirements, with the exception that
1507  * only the operations defined for a const-qualified Sequence are supported.
1508  *
1509  * The sub_match object stored at index 0 represents sub-expression 0, i.e.
1510  * the whole match. In this case the %sub_match member matched is always true.
1511  * The sub_match object stored at index n denotes what matched the marked
1512  * sub-expression n within the matched expression. If the sub-expression n
1513  * participated in a regular expression match then the %sub_match member
1514  * matched evaluates to true, and members first and second denote the range
1515  * of characters [first, second) which formed that match. Otherwise matched
1516  * is false, and members first and second point to the end of the sequence
1517  * that was searched.
1518  *
1519  * @nosubgrouping
1520  */
1521  template<typename _Bi_iter,
1522  typename _Alloc = allocator<sub_match<_Bi_iter> > >
1523  class match_results
1524  : private std::vector<sub_match<_Bi_iter>, _Alloc>
1525  {
1526  private:
1527  /*
1528  * The vector base is empty if this does not represent a successful match.
1529  * Otherwise it contains n+3 elements where n is the number of marked
1530  * sub-expressions:
1531  * [0] entire match
1532  * [1] 1st marked subexpression
1533  * ...
1534  * [n] nth marked subexpression
1535  * [n+1] prefix
1536  * [n+2] suffix
1537  */
1538  typedef std::vector<sub_match<_Bi_iter>, _Alloc> _Base_type;
1539  typedef std::iterator_traits<_Bi_iter> __iter_traits;
1540  typedef regex_constants::match_flag_type match_flag_type;
1541 
1542  public:
1543  /**
1544  * @name 10.? Public Types
1545  */
1546  //@{
1547  typedef sub_match<_Bi_iter> value_type;
1548  typedef const value_type& const_reference;
1549  typedef const_reference reference;
1550  typedef typename _Base_type::const_iterator const_iterator;
1551  typedef const_iterator iterator;
1552  typedef typename __iter_traits::difference_type difference_type;
1553  typedef typename allocator_traits<_Alloc>::size_type size_type;
1554  typedef _Alloc allocator_type;
1555  typedef typename __iter_traits::value_type char_type;
1556  typedef std::basic_string<char_type> string_type;
1557  //@}
1558 
1559  public:
1560  /**
1561  * @name 28.10.1 Construction, Copying, and Destruction
1562  */
1563  //@{
1564 
1565  /**
1566  * @brief Constructs a default %match_results container.
1567  * @post size() returns 0 and str() returns an empty string.
1568  */
1569  explicit
1570  match_results(const _Alloc& __a = _Alloc())
1571  : _Base_type(__a)
1572  { }
1573 
1574  /**
1575  * @brief Copy constructs a %match_results.
1576  */
1577  match_results(const match_results& __rhs) = default;
1578 
1579  /**
1580  * @brief Move constructs a %match_results.
1581  */
1582  match_results(match_results&& __rhs) noexcept = default;
1583 
1584  /**
1585  * @brief Assigns rhs to *this.
1586  */
1587  match_results&
1588  operator=(const match_results& __rhs) = default;
1589 
1590  /**
1591  * @brief Move-assigns rhs to *this.
1592  */
1593  match_results&
1594  operator=(match_results&& __rhs) = default;
1595 
1596  /**
1597  * @brief Destroys a %match_results object.
1598  */
1600  { }
1601 
1602  //@}
1603 
1604  // 28.10.2, state:
1605  /**
1606  * @brief Indicates if the %match_results is ready.
1607  * @retval true The object has a fully-established result state.
1608  * @retval false The object is not ready.
1609  */
1610  bool ready() const { return !_Base_type::empty(); }
1611 
1612  /**
1613  * @name 28.10.2 Size
1614  */
1615  //@{
1616 
1617  /**
1618  * @brief Gets the number of matches and submatches.
1619  *
1620  * The number of matches for a given regular expression will be either 0
1621  * if there was no match or mark_count() + 1 if a match was successful.
1622  * Some matches may be empty.
1623  *
1624  * @returns the number of matches found.
1625  */
1626  size_type
1627  size() const
1628  {
1629  size_type __size = _Base_type::size();
1630  return (__size && _Base_type::operator[](0).matched) ? __size - 2 : 0;
1631  }
1632 
1633  size_type
1634  max_size() const
1635  { return _Base_type::max_size(); }
1636 
1637  /**
1638  * @brief Indicates if the %match_results contains no results.
1639  * @retval true The %match_results object is empty.
1640  * @retval false The %match_results object is not empty.
1641  */
1642  bool
1643  empty() const
1644  { return size() == 0; }
1645 
1646  //@}
1647 
1648  /**
1649  * @name 10.3 Element Access
1650  */
1651  //@{
1652 
1653  /**
1654  * @brief Gets the length of the indicated submatch.
1655  * @param __sub indicates the submatch.
1656  * @pre ready() == true
1657  *
1658  * This function returns the length of the indicated submatch, or the
1659  * length of the entire match if @p __sub is zero (the default).
1660  */
1661  difference_type
1662  length(size_type __sub = 0) const
1663  { return (*this)[__sub].length(); }
1664 
1665  /**
1666  * @brief Gets the offset of the beginning of the indicated submatch.
1667  * @param __sub indicates the submatch.
1668  * @pre ready() == true
1669  *
1670  * This function returns the offset from the beginning of the target
1671  * sequence to the beginning of the submatch, unless the value of @p __sub
1672  * is zero (the default), in which case this function returns the offset
1673  * from the beginning of the target sequence to the beginning of the
1674  * match.
1675  *
1676  * Returns -1 if @p __sub is out of range.
1677  */
1678  difference_type
1679  position(size_type __sub = 0) const
1680  {
1681  return __sub < size() ? std::distance(_M_begin,
1682  (*this)[__sub].first) : -1;
1683  }
1684 
1685  /**
1686  * @brief Gets the match or submatch converted to a string type.
1687  * @param __sub indicates the submatch.
1688  * @pre ready() == true
1689  *
1690  * This function gets the submatch (or match, if @p __sub is
1691  * zero) extracted from the target range and converted to the
1692  * associated string type.
1693  */
1694  string_type
1695  str(size_type __sub = 0) const
1696  { return (*this)[__sub].str(); }
1697 
1698  /**
1699  * @brief Gets a %sub_match reference for the match or submatch.
1700  * @param __sub indicates the submatch.
1701  * @pre ready() == true
1702  *
1703  * This function gets a reference to the indicated submatch, or
1704  * the entire match if @p __sub is zero.
1705  *
1706  * If @p __sub >= size() then this function returns a %sub_match with a
1707  * special value indicating no submatch.
1708  */
1709  const_reference
1710  operator[](size_type __sub) const
1711  {
1712  _GLIBCXX_DEBUG_ASSERT( ready() );
1713  return __sub < size()
1714  ? _Base_type::operator[](__sub)
1715  : __unmatched_sub<_Bi_iter>();
1716  }
1717 
1718  /**
1719  * @brief Gets a %sub_match representing the match prefix.
1720  * @pre ready() == true
1721  *
1722  * This function gets a reference to a %sub_match object representing the
1723  * part of the target range between the start of the target range and the
1724  * start of the match.
1725  */
1726  const_reference
1727  prefix() const
1728  {
1729  _GLIBCXX_DEBUG_ASSERT( ready() );
1730  return !empty()
1732  : __unmatched_sub<_Bi_iter>();
1733  }
1734 
1735  /**
1736  * @brief Gets a %sub_match representing the match suffix.
1737  * @pre ready() == true
1738  *
1739  * This function gets a reference to a %sub_match object representing the
1740  * part of the target range between the end of the match and the end of
1741  * the target range.
1742  */
1743  const_reference
1744  suffix() const
1745  {
1746  _GLIBCXX_DEBUG_ASSERT( ready() );
1747  return !empty()
1749  : __unmatched_sub<_Bi_iter>();
1750  }
1751 
1752  /**
1753  * @brief Gets an iterator to the start of the %sub_match collection.
1754  */
1755  const_iterator
1756  begin() const
1757  { return _Base_type::begin(); }
1758 
1759  /**
1760  * @brief Gets an iterator to the start of the %sub_match collection.
1761  */
1762  const_iterator
1763  cbegin() const
1764  { return this->begin(); }
1765 
1766  /**
1767  * @brief Gets an iterator to one-past-the-end of the collection.
1768  */
1769  const_iterator
1770  end() const
1771  { return _Base_type::end() - 2; }
1772 
1773  /**
1774  * @brief Gets an iterator to one-past-the-end of the collection.
1775  */
1776  const_iterator
1777  cend() const
1778  { return this->end(); }
1779 
1780  //@}
1781 
1782  /**
1783  * @name 10.4 Formatting
1784  *
1785  * These functions perform formatted substitution of the matched
1786  * character sequences into their target. The format specifiers and
1787  * escape sequences accepted by these functions are determined by
1788  * their @p flags parameter as documented above.
1789  */
1790  //@{
1791 
1792  /**
1793  * @pre ready() == true
1794  */
1795  template<typename _Out_iter>
1796  _Out_iter
1797  format(_Out_iter __out, const char_type* __fmt_first,
1798  const char_type* __fmt_last,
1799  match_flag_type __flags = regex_constants::format_default) const;
1800 
1801  /**
1802  * @pre ready() == true
1803  */
1804  template<typename _Out_iter, typename _St, typename _Sa>
1805  _Out_iter
1806  format(_Out_iter __out, const basic_string<char_type, _St, _Sa>& __fmt,
1807  match_flag_type __flags = regex_constants::format_default) const
1808  {
1809  return format(__out, __fmt.data(), __fmt.data() + __fmt.size(),
1810  __flags);
1811  }
1812 
1813  /**
1814  * @pre ready() == true
1815  */
1816  template<typename _St, typename _Sa>
1819  match_flag_type __flags = regex_constants::format_default) const
1820  {
1822  format(std::back_inserter(__result), __fmt, __flags);
1823  return __result;
1824  }
1825 
1826  /**
1827  * @pre ready() == true
1828  */
1829  string_type
1830  format(const char_type* __fmt,
1831  match_flag_type __flags = regex_constants::format_default) const
1832  {
1833  string_type __result;
1834  format(std::back_inserter(__result),
1835  __fmt,
1836  __fmt + char_traits<char_type>::length(__fmt),
1837  __flags);
1838  return __result;
1839  }
1840 
1841  //@}
1842 
1843  /**
1844  * @name 10.5 Allocator
1845  */
1846  //@{
1847 
1848  /**
1849  * @brief Gets a copy of the allocator.
1850  */
1851  allocator_type
1853  { return _Base_type::get_allocator(); }
1854 
1855  //@}
1856 
1857  /**
1858  * @name 10.6 Swap
1859  */
1860  //@{
1861 
1862  /**
1863  * @brief Swaps the contents of two match_results.
1864  */
1865  void
1867  {
1868  using std::swap;
1869  _Base_type::swap(__that);
1870  swap(_M_begin, __that._M_begin);
1871  }
1872  //@}
1873 
1874  private:
1875  template<typename, typename, typename, bool>
1876  friend class __detail::_Executor;
1877 
1878  template<typename, typename, typename>
1879  friend class regex_iterator;
1880 
1881  template<typename _Bp, typename _Ap, typename _Cp, typename _Rp,
1882  __detail::_RegexExecutorPolicy, bool>
1883  friend bool
1884  __detail::__regex_algo_impl(_Bp, _Bp, match_results<_Bp, _Ap>&,
1885  const basic_regex<_Cp, _Rp>&,
1887 
1888  _Bi_iter _M_begin;
1889  bool _M_in_iterator;
1890  };
1891 
1892  typedef match_results<const char*> cmatch;
1893  typedef match_results<string::const_iterator> smatch;
1894 #ifdef _GLIBCXX_USE_WCHAR_T
1895  typedef match_results<const wchar_t*> wcmatch;
1896  typedef match_results<wstring::const_iterator> wsmatch;
1897 #endif
1898 
1899  // match_results comparisons
1900  /**
1901  * @brief Compares two match_results for equality.
1902  * @returns true if the two objects refer to the same match,
1903  * false otherwise.
1904  */
1905  template<typename _Bi_iter, typename _Alloc>
1906  inline bool
1908  const match_results<_Bi_iter, _Alloc>& __m2)
1909  {
1910  if (__m1.ready() != __m2.ready())
1911  return false;
1912  if (!__m1.ready()) // both are not ready
1913  return true;
1914  if (__m1.empty() != __m2.empty())
1915  return false;
1916  if (__m1.empty()) // both are empty
1917  return true;
1918  return __m1.prefix() == __m2.prefix()
1919  && __m1.size() == __m2.size()
1920  && std::equal(__m1.begin(), __m1.end(), __m2.begin())
1921  && __m1.suffix() == __m2.suffix();
1922  }
1923 
1924  /**
1925  * @brief Compares two match_results for inequality.
1926  * @returns true if the two objects do not refer to the same match,
1927  * false otherwise.
1928  */
1929  template<typename _Bi_iter, class _Alloc>
1930  inline bool
1932  const match_results<_Bi_iter, _Alloc>& __m2)
1933  { return !(__m1 == __m2); }
1934 
1935  // [7.10.6] match_results swap
1936  /**
1937  * @brief Swaps two match results.
1938  * @param __lhs A match result.
1939  * @param __rhs A match result.
1940  *
1941  * The contents of the two match_results objects are swapped.
1942  */
1943  template<typename _Bi_iter, typename _Alloc>
1944  inline void
1947  { __lhs.swap(__rhs); }
1948 
1949  // [7.11.2] Function template regex_match
1950  /**
1951  * @name Matching, Searching, and Replacing
1952  */
1953  //@{
1954 
1955  /**
1956  * @brief Determines if there is a match between the regular expression @p e
1957  * and all of the character sequence [first, last).
1958  *
1959  * @param __s Start of the character sequence to match.
1960  * @param __e One-past-the-end of the character sequence to match.
1961  * @param __m The match results.
1962  * @param __re The regular expression.
1963  * @param __flags Controls how the regular expression is matched.
1964  *
1965  * @retval true A match exists.
1966  * @retval false Otherwise.
1967  *
1968  * @throws an exception of type regex_error.
1969  */
1970  template<typename _Bi_iter, typename _Alloc,
1971  typename _Ch_type, typename _Rx_traits>
1972  inline bool
1973  regex_match(_Bi_iter __s,
1974  _Bi_iter __e,
1979  {
1980  return __detail::__regex_algo_impl<_Bi_iter, _Alloc, _Ch_type, _Rx_traits,
1981  __detail::_RegexExecutorPolicy::_S_auto, true>
1982  (__s, __e, __m, __re, __flags);
1983  }
1984 
1985  /**
1986  * @brief Indicates if there is a match between the regular expression @p e
1987  * and all of the character sequence [first, last).
1988  *
1989  * @param __first Beginning of the character sequence to match.
1990  * @param __last One-past-the-end of the character sequence to match.
1991  * @param __re The regular expression.
1992  * @param __flags Controls how the regular expression is matched.
1993  *
1994  * @retval true A match exists.
1995  * @retval false Otherwise.
1996  *
1997  * @throws an exception of type regex_error.
1998  */
1999  template<typename _Bi_iter, typename _Ch_type, typename _Rx_traits>
2000  inline bool
2001  regex_match(_Bi_iter __first, _Bi_iter __last,
2005  {
2006  match_results<_Bi_iter> __what;
2007  return regex_match(__first, __last, __what, __re, __flags);
2008  }
2009 
2010  /**
2011  * @brief Determines if there is a match between the regular expression @p e
2012  * and a C-style null-terminated string.
2013  *
2014  * @param __s The C-style null-terminated string to match.
2015  * @param __m The match results.
2016  * @param __re The regular expression.
2017  * @param __f Controls how the regular expression is matched.
2018  *
2019  * @retval true A match exists.
2020  * @retval false Otherwise.
2021  *
2022  * @throws an exception of type regex_error.
2023  */
2024  template<typename _Ch_type, typename _Alloc, typename _Rx_traits>
2025  inline bool
2026  regex_match(const _Ch_type* __s,
2031  { return regex_match(__s, __s + _Rx_traits::length(__s), __m, __re, __f); }
2032 
2033  /**
2034  * @brief Determines if there is a match between the regular expression @p e
2035  * and a string.
2036  *
2037  * @param __s The string to match.
2038  * @param __m The match results.
2039  * @param __re The regular expression.
2040  * @param __flags Controls how the regular expression is matched.
2041  *
2042  * @retval true A match exists.
2043  * @retval false Otherwise.
2044  *
2045  * @throws an exception of type regex_error.
2046  */
2047  template<typename _Ch_traits, typename _Ch_alloc,
2048  typename _Alloc, typename _Ch_type, typename _Rx_traits>
2049  inline bool
2051  match_results<typename basic_string<_Ch_type,
2052  _Ch_traits, _Ch_alloc>::const_iterator, _Alloc>& __m,
2056  { return regex_match(__s.begin(), __s.end(), __m, __re, __flags); }
2057 
2058  /**
2059  * @brief Indicates if there is a match between the regular expression @p e
2060  * and a C-style null-terminated string.
2061  *
2062  * @param __s The C-style null-terminated string to match.
2063  * @param __re The regular expression.
2064  * @param __f Controls how the regular expression is matched.
2065  *
2066  * @retval true A match exists.
2067  * @retval false Otherwise.
2068  *
2069  * @throws an exception of type regex_error.
2070  */
2071  template<typename _Ch_type, class _Rx_traits>
2072  inline bool
2073  regex_match(const _Ch_type* __s,
2077  { return regex_match(__s, __s + _Rx_traits::length(__s), __re, __f); }
2078 
2079  /**
2080  * @brief Indicates if there is a match between the regular expression @p e
2081  * and a string.
2082  *
2083  * @param __s [IN] The string to match.
2084  * @param __re [IN] The regular expression.
2085  * @param __flags [IN] Controls how the regular expression is matched.
2086  *
2087  * @retval true A match exists.
2088  * @retval false Otherwise.
2089  *
2090  * @throws an exception of type regex_error.
2091  */
2092  template<typename _Ch_traits, typename _Str_allocator,
2093  typename _Ch_type, typename _Rx_traits>
2094  inline bool
2099  { return regex_match(__s.begin(), __s.end(), __re, __flags); }
2100 
2101  // [7.11.3] Function template regex_search
2102  /**
2103  * Searches for a regular expression within a range.
2104  * @param __s [IN] The start of the string to search.
2105  * @param __e [IN] One-past-the-end of the string to search.
2106  * @param __m [OUT] The match results.
2107  * @param __re [IN] The regular expression to search for.
2108  * @param __flags [IN] Search policy flags.
2109  * @retval true A match was found within the string.
2110  * @retval false No match was found within the string, the content of %m is
2111  * undefined.
2112  *
2113  * @throws an exception of type regex_error.
2114  */
2115  template<typename _Bi_iter, typename _Alloc,
2116  typename _Ch_type, typename _Rx_traits>
2117  inline bool
2118  regex_search(_Bi_iter __s, _Bi_iter __e,
2123  {
2124  return __detail::__regex_algo_impl<_Bi_iter, _Alloc, _Ch_type, _Rx_traits,
2125  __detail::_RegexExecutorPolicy::_S_auto, false>
2126  (__s, __e, __m, __re, __flags);
2127  }
2128 
2129  /**
2130  * Searches for a regular expression within a range.
2131  * @param __first [IN] The start of the string to search.
2132  * @param __last [IN] One-past-the-end of the string to search.
2133  * @param __re [IN] The regular expression to search for.
2134  * @param __flags [IN] Search policy flags.
2135  * @retval true A match was found within the string.
2136  * @retval false No match was found within the string.
2137  *
2138  * @throws an exception of type regex_error.
2139  */
2140  template<typename _Bi_iter, typename _Ch_type, typename _Rx_traits>
2141  inline bool
2142  regex_search(_Bi_iter __first, _Bi_iter __last,
2146  {
2147  match_results<_Bi_iter> __what;
2148  return regex_search(__first, __last, __what, __re, __flags);
2149  }
2150 
2151  /**
2152  * @brief Searches for a regular expression within a C-string.
2153  * @param __s [IN] A C-string to search for the regex.
2154  * @param __m [OUT] The set of regex matches.
2155  * @param __e [IN] The regex to search for in @p s.
2156  * @param __f [IN] The search flags.
2157  * @retval true A match was found within the string.
2158  * @retval false No match was found within the string, the content of %m is
2159  * undefined.
2160  *
2161  * @throws an exception of type regex_error.
2162  */
2163  template<typename _Ch_type, class _Alloc, class _Rx_traits>
2164  inline bool
2165  regex_search(const _Ch_type* __s,
2170  { return regex_search(__s, __s + _Rx_traits::length(__s), __m, __e, __f); }
2171 
2172  /**
2173  * @brief Searches for a regular expression within a C-string.
2174  * @param __s [IN] The C-string to search.
2175  * @param __e [IN] The regular expression to search for.
2176  * @param __f [IN] Search policy flags.
2177  * @retval true A match was found within the string.
2178  * @retval false No match was found within the string.
2179  *
2180  * @throws an exception of type regex_error.
2181  */
2182  template<typename _Ch_type, typename _Rx_traits>
2183  inline bool
2184  regex_search(const _Ch_type* __s,
2188  { return regex_search(__s, __s + _Rx_traits::length(__s), __e, __f); }
2189 
2190  /**
2191  * @brief Searches for a regular expression within a string.
2192  * @param __s [IN] The string to search.
2193  * @param __e [IN] The regular expression to search for.
2194  * @param __flags [IN] Search policy flags.
2195  * @retval true A match was found within the string.
2196  * @retval false No match was found within the string.
2197  *
2198  * @throws an exception of type regex_error.
2199  */
2200  template<typename _Ch_traits, typename _String_allocator,
2201  typename _Ch_type, typename _Rx_traits>
2202  inline bool
2203  regex_search(const basic_string<_Ch_type, _Ch_traits,
2204  _String_allocator>& __s,
2208  { return regex_search(__s.begin(), __s.end(), __e, __flags); }
2209 
2210  /**
2211  * @brief Searches for a regular expression within a string.
2212  * @param __s [IN] A C++ string to search for the regex.
2213  * @param __m [OUT] The set of regex matches.
2214  * @param __e [IN] The regex to search for in @p s.
2215  * @param __f [IN] The search flags.
2216  * @retval true A match was found within the string.
2217  * @retval false No match was found within the string, the content of %m is
2218  * undefined.
2219  *
2220  * @throws an exception of type regex_error.
2221  */
2222  template<typename _Ch_traits, typename _Ch_alloc,
2223  typename _Alloc, typename _Ch_type,
2224  typename _Rx_traits>
2225  inline bool
2227  match_results<typename basic_string<_Ch_type,
2228  _Ch_traits, _Ch_alloc>::const_iterator, _Alloc>& __m,
2232  { return regex_search(__s.begin(), __s.end(), __m, __e, __f); }
2233 
2234  // std [28.11.4] Function template regex_replace
2235  /**
2236  * @brief Search for a regular expression within a range for multiple times,
2237  and replace the matched parts through filling a format string.
2238  * @param __out [OUT] The output iterator.
2239  * @param __first [IN] The start of the string to search.
2240  * @param __last [IN] One-past-the-end of the string to search.
2241  * @param __e [IN] The regular expression to search for.
2242  * @param __fmt [IN] The format string.
2243  * @param __flags [IN] Search and replace policy flags.
2244  *
2245  * @returns __out
2246  * @throws an exception of type regex_error.
2247  */
2248  template<typename _Out_iter, typename _Bi_iter,
2249  typename _Rx_traits, typename _Ch_type,
2250  typename _St, typename _Sa>
2251  inline _Out_iter
2252  regex_replace(_Out_iter __out, _Bi_iter __first, _Bi_iter __last,
2254  const basic_string<_Ch_type, _St, _Sa>& __fmt,
2257  {
2258  return regex_replace(__out, __first, __last, __e, __fmt.c_str(), __flags);
2259  }
2260 
2261  /**
2262  * @brief Search for a regular expression within a range for multiple times,
2263  and replace the matched parts through filling a format C-string.
2264  * @param __out [OUT] The output iterator.
2265  * @param __first [IN] The start of the string to search.
2266  * @param __last [IN] One-past-the-end of the string to search.
2267  * @param __e [IN] The regular expression to search for.
2268  * @param __fmt [IN] The format C-string.
2269  * @param __flags [IN] Search and replace policy flags.
2270  *
2271  * @returns __out
2272  * @throws an exception of type regex_error.
2273  */
2274  template<typename _Out_iter, typename _Bi_iter,
2275  typename _Rx_traits, typename _Ch_type>
2276  _Out_iter
2277  regex_replace(_Out_iter __out, _Bi_iter __first, _Bi_iter __last,
2278  const basic_regex<_Ch_type, _Rx_traits>& __e,
2279  const _Ch_type* __fmt,
2282 
2283  /**
2284  * @brief Search for a regular expression within a string for multiple times,
2285  and replace the matched parts through filling a format string.
2286  * @param __s [IN] The string to search and replace.
2287  * @param __e [IN] The regular expression to search for.
2288  * @param __fmt [IN] The format string.
2289  * @param __flags [IN] Search and replace policy flags.
2290  *
2291  * @returns The string after replacing.
2292  * @throws an exception of type regex_error.
2293  */
2294  template<typename _Rx_traits, typename _Ch_type,
2295  typename _St, typename _Sa, typename _Fst, typename _Fsa>
2296  inline basic_string<_Ch_type, _St, _Sa>
2302  {
2305  __s.begin(), __s.end(), __e, __fmt, __flags);
2306  return __result;
2307  }
2308 
2309  /**
2310  * @brief Search for a regular expression within a string for multiple times,
2311  and replace the matched parts through filling a format C-string.
2312  * @param __s [IN] The string to search and replace.
2313  * @param __e [IN] The regular expression to search for.
2314  * @param __fmt [IN] The format C-string.
2315  * @param __flags [IN] Search and replace policy flags.
2316  *
2317  * @returns The string after replacing.
2318  * @throws an exception of type regex_error.
2319  */
2320  template<typename _Rx_traits, typename _Ch_type,
2321  typename _St, typename _Sa>
2322  inline basic_string<_Ch_type, _St, _Sa>
2325  const _Ch_type* __fmt,
2328  {
2331  __s.begin(), __s.end(), __e, __fmt, __flags);
2332  return __result;
2333  }
2334 
2335  /**
2336  * @brief Search for a regular expression within a C-string for multiple
2337  times, and replace the matched parts through filling a format string.
2338  * @param __s [IN] The C-string to search and replace.
2339  * @param __e [IN] The regular expression to search for.
2340  * @param __fmt [IN] The format string.
2341  * @param __flags [IN] Search and replace policy flags.
2342  *
2343  * @returns The string after replacing.
2344  * @throws an exception of type regex_error.
2345  */
2346  template<typename _Rx_traits, typename _Ch_type,
2347  typename _St, typename _Sa>
2348  inline basic_string<_Ch_type>
2349  regex_replace(const _Ch_type* __s,
2351  const basic_string<_Ch_type, _St, _Sa>& __fmt,
2354  {
2355  basic_string<_Ch_type> __result;
2356  regex_replace(std::back_inserter(__result), __s,
2357  __s + char_traits<_Ch_type>::length(__s),
2358  __e, __fmt, __flags);
2359  return __result;
2360  }
2361 
2362  /**
2363  * @brief Search for a regular expression within a C-string for multiple
2364  times, and replace the matched parts through filling a format C-string.
2365  * @param __s [IN] The C-string to search and replace.
2366  * @param __e [IN] The regular expression to search for.
2367  * @param __fmt [IN] The format C-string.
2368  * @param __flags [IN] Search and replace policy flags.
2369  *
2370  * @returns The string after replacing.
2371  * @throws an exception of type regex_error.
2372  */
2373  template<typename _Rx_traits, typename _Ch_type>
2374  inline basic_string<_Ch_type>
2375  regex_replace(const _Ch_type* __s,
2377  const _Ch_type* __fmt,
2380  {
2381  basic_string<_Ch_type> __result;
2382  regex_replace(std::back_inserter(__result), __s,
2383  __s + char_traits<_Ch_type>::length(__s),
2384  __e, __fmt, __flags);
2385  return __result;
2386  }
2387 
2388  //@}
2389 
2390  // std [28.12] Class template regex_iterator
2391  /**
2392  * An iterator adaptor that will provide repeated calls of regex_search over
2393  * a range until no more matches remain.
2394  */
2395  template<typename _Bi_iter,
2396  typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type,
2397  typename _Rx_traits = regex_traits<_Ch_type> >
2399  {
2400  public:
2402  typedef match_results<_Bi_iter> value_type;
2403  typedef std::ptrdiff_t difference_type;
2404  typedef const value_type* pointer;
2405  typedef const value_type& reference;
2407 
2408  /**
2409  * @brief Provides a singular iterator, useful for indicating
2410  * one-past-the-end of a range.
2411  */
2413  : _M_match()
2414  { }
2415 
2416  /**
2417  * Constructs a %regex_iterator...
2418  * @param __a [IN] The start of a text range to search.
2419  * @param __b [IN] One-past-the-end of the text range to search.
2420  * @param __re [IN] The regular expression to match.
2421  * @param __m [IN] Policy flags for match rules.
2422  */
2423  regex_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type& __re,
2426  : _M_begin(__a), _M_end(__b), _M_pregex(&__re), _M_flags(__m), _M_match()
2427  {
2428  if (!regex_search(_M_begin, _M_end, _M_match, *_M_pregex, _M_flags))
2429  *this = regex_iterator();
2430  }
2431 
2432  /**
2433  * Copy constructs a %regex_iterator.
2434  */
2435  regex_iterator(const regex_iterator& __rhs) = default;
2436 
2437  /**
2438  * @brief Assigns one %regex_iterator to another.
2439  */
2441  operator=(const regex_iterator& __rhs) = default;
2442 
2443  /**
2444  * @brief Tests the equivalence of two regex iterators.
2445  */
2446  bool
2447  operator==(const regex_iterator& __rhs) const;
2448 
2449  /**
2450  * @brief Tests the inequivalence of two regex iterators.
2451  */
2452  bool
2453  operator!=(const regex_iterator& __rhs) const
2454  { return !(*this == __rhs); }
2455 
2456  /**
2457  * @brief Dereferences a %regex_iterator.
2458  */
2459  const value_type&
2460  operator*() const
2461  { return _M_match; }
2462 
2463  /**
2464  * @brief Selects a %regex_iterator member.
2465  */
2466  const value_type*
2467  operator->() const
2468  { return &_M_match; }
2469 
2470  /**
2471  * @brief Increments a %regex_iterator.
2472  */
2474  operator++();
2475 
2476  /**
2477  * @brief Postincrements a %regex_iterator.
2478  */
2481  {
2482  auto __tmp = *this;
2483  ++(*this);
2484  return __tmp;
2485  }
2486 
2487  private:
2488  _Bi_iter _M_begin;
2489  _Bi_iter _M_end;
2490  const regex_type* _M_pregex;
2492  match_results<_Bi_iter> _M_match;
2493  };
2494 
2495  typedef regex_iterator<const char*> cregex_iterator;
2496  typedef regex_iterator<string::const_iterator> sregex_iterator;
2497 #ifdef _GLIBCXX_USE_WCHAR_T
2498  typedef regex_iterator<const wchar_t*> wcregex_iterator;
2499  typedef regex_iterator<wstring::const_iterator> wsregex_iterator;
2500 #endif
2501 
2502  // [7.12.2] Class template regex_token_iterator
2503  /**
2504  * Iterates over submatches in a range (or @a splits a text string).
2505  *
2506  * The purpose of this iterator is to enumerate all, or all specified,
2507  * matches of a regular expression within a text range. The dereferenced
2508  * value of an iterator of this class is a std::sub_match object.
2509  */
2510  template<typename _Bi_iter,
2511  typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type,
2512  typename _Rx_traits = regex_traits<_Ch_type> >
2514  {
2515  public:
2517  typedef sub_match<_Bi_iter> value_type;
2518  typedef std::ptrdiff_t difference_type;
2519  typedef const value_type* pointer;
2520  typedef const value_type& reference;
2522 
2523  public:
2524  /**
2525  * @brief Default constructs a %regex_token_iterator.
2526  *
2527  * A default-constructed %regex_token_iterator is a singular iterator
2528  * that will compare equal to the one-past-the-end value for any
2529  * iterator of the same type.
2530  */
2532  : _M_position(), _M_subs(), _M_suffix(), _M_n(0), _M_result(nullptr),
2533  _M_has_m1(false)
2534  { }
2535 
2536  /**
2537  * Constructs a %regex_token_iterator...
2538  * @param __a [IN] The start of the text to search.
2539  * @param __b [IN] One-past-the-end of the text to search.
2540  * @param __re [IN] The regular expression to search for.
2541  * @param __submatch [IN] Which submatch to return. There are some
2542  * special values for this parameter:
2543  * - -1 each enumerated subexpression does NOT
2544  * match the regular expression (aka field
2545  * splitting)
2546  * - 0 the entire string matching the
2547  * subexpression is returned for each match
2548  * within the text.
2549  * - >0 enumerates only the indicated
2550  * subexpression from a match within the text.
2551  * @param __m [IN] Policy flags for match rules.
2552  */
2553  regex_token_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type& __re,
2554  int __submatch = 0,
2557  : _M_position(__a, __b, __re, __m), _M_subs(1, __submatch), _M_n(0)
2558  { _M_init(__a, __b); }
2559 
2560  /**
2561  * Constructs a %regex_token_iterator...
2562  * @param __a [IN] The start of the text to search.
2563  * @param __b [IN] One-past-the-end of the text to search.
2564  * @param __re [IN] The regular expression to search for.
2565  * @param __submatches [IN] A list of subexpressions to return for each
2566  * regular expression match within the text.
2567  * @param __m [IN] Policy flags for match rules.
2568  */
2569  regex_token_iterator(_Bi_iter __a, _Bi_iter __b,
2570  const regex_type& __re,
2571  const std::vector<int>& __submatches,
2574  : _M_position(__a, __b, __re, __m), _M_subs(__submatches), _M_n(0)
2575  { _M_init(__a, __b); }
2576 
2577  /**
2578  * Constructs a %regex_token_iterator...
2579  * @param __a [IN] The start of the text to search.
2580  * @param __b [IN] One-past-the-end of the text to search.
2581  * @param __re [IN] The regular expression to search for.
2582  * @param __submatches [IN] A list of subexpressions to return for each
2583  * regular expression match within the text.
2584  * @param __m [IN] Policy flags for match rules.
2585  */
2586  regex_token_iterator(_Bi_iter __a, _Bi_iter __b,
2587  const regex_type& __re,
2588  initializer_list<int> __submatches,
2591  : _M_position(__a, __b, __re, __m), _M_subs(__submatches), _M_n(0)
2592  { _M_init(__a, __b); }
2593 
2594  /**
2595  * Constructs a %regex_token_iterator...
2596  * @param __a [IN] The start of the text to search.
2597  * @param __b [IN] One-past-the-end of the text to search.
2598  * @param __re [IN] The regular expression to search for.
2599  * @param __submatches [IN] A list of subexpressions to return for each
2600  * regular expression match within the text.
2601  * @param __m [IN] Policy flags for match rules.
2602  */
2603  template<std::size_t _Nm>
2604  regex_token_iterator(_Bi_iter __a, _Bi_iter __b,
2605  const regex_type& __re,
2606  const int (&__submatches)[_Nm],
2609  : _M_position(__a, __b, __re, __m),
2610  _M_subs(__submatches, __submatches + _Nm), _M_n(0)
2611  { _M_init(__a, __b); }
2612 
2613  /**
2614  * @brief Copy constructs a %regex_token_iterator.
2615  * @param __rhs [IN] A %regex_token_iterator to copy.
2616  */
2618  : _M_position(__rhs._M_position), _M_subs(__rhs._M_subs),
2619  _M_suffix(__rhs._M_suffix), _M_n(__rhs._M_n), _M_has_m1(__rhs._M_has_m1)
2620  { _M_normalize_result(); }
2621 
2622  /**
2623  * @brief Assigns a %regex_token_iterator to another.
2624  * @param __rhs [IN] A %regex_token_iterator to copy.
2625  */
2627  operator=(const regex_token_iterator& __rhs);
2628 
2629  /**
2630  * @brief Compares a %regex_token_iterator to another for equality.
2631  */
2632  bool
2633  operator==(const regex_token_iterator& __rhs) const;
2634 
2635  /**
2636  * @brief Compares a %regex_token_iterator to another for inequality.
2637  */
2638  bool
2639  operator!=(const regex_token_iterator& __rhs) const
2640  { return !(*this == __rhs); }
2641 
2642  /**
2643  * @brief Dereferences a %regex_token_iterator.
2644  */
2645  const value_type&
2646  operator*() const
2647  { return *_M_result; }
2648 
2649  /**
2650  * @brief Selects a %regex_token_iterator member.
2651  */
2652  const value_type*
2653  operator->() const
2654  { return _M_result; }
2655 
2656  /**
2657  * @brief Increments a %regex_token_iterator.
2658  */
2660  operator++();
2661 
2662  /**
2663  * @brief Postincrements a %regex_token_iterator.
2664  */
2667  {
2668  auto __tmp = *this;
2669  ++(*this);
2670  return __tmp;
2671  }
2672 
2673  private:
2675 
2676  void
2677  _M_init(_Bi_iter __a, _Bi_iter __b);
2678 
2679  const value_type&
2680  _M_current_match() const
2681  {
2682  if (_M_subs[_M_n] == -1)
2683  return (*_M_position).prefix();
2684  else
2685  return (*_M_position)[_M_subs[_M_n]];
2686  }
2687 
2688  constexpr bool
2689  _M_end_of_seq() const
2690  { return _M_result == nullptr; }
2691 
2692  // [28.12.2.2.4]
2693  void
2694  _M_normalize_result()
2695  {
2696  if (_M_position != _Position())
2697  _M_result = &_M_current_match();
2698  else if (_M_has_m1)
2699  _M_result = &_M_suffix;
2700  else
2701  _M_result = nullptr;
2702  }
2703 
2704  _Position _M_position;
2705  std::vector<int> _M_subs;
2706  value_type _M_suffix;
2707  std::size_t _M_n;
2708  const value_type* _M_result;
2709 
2710  // Show whether _M_subs contains -1
2711  bool _M_has_m1;
2712  };
2713 
2714  /** @brief Token iterator for C-style NULL-terminated strings. */
2716 
2717  /** @brief Token iterator for standard strings. */
2719 
2720 #ifdef _GLIBCXX_USE_WCHAR_T
2721  /** @brief Token iterator for C-style NULL-terminated wide strings. */
2723 
2724  /** @brief Token iterator for standard wide-character strings. */
2726 #endif
2727 
2728  //@} // group regex
2729 _GLIBCXX_END_NAMESPACE_VERSION
2730 } // namespace
2731 
2732 #include <bits/regex.tcc>
Container class for localization functionality.The locale class is first a class wrapper for C librar...
const_iterator cbegin() const
Gets an iterator to the start of the sub_match collection.
Definition: regex.h:1763
int compare(const value_type *__s) const
Compares this sub_match to a C-style string.
Definition: regex.h:922
regex_token_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type &__re, const int(&__submatches)[_Nm], regex_constants::match_flag_type __m=regex_constants::match_default)
Definition: regex.h:2604
bool isctype(_Ch_type __c, char_class_type __f) const
Determines if c is a member of an identified class.
const _CharT * data() const noexcept
Return const pointer to contents.
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
Definition: move.h:101
int value(_Ch_type __ch, int __radix) const
Converts a digit to an int.
regex_token_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type &__re, int __submatch=0, regex_constants::match_flag_type __m=regex_constants::match_default)
Definition: regex.h:2553
size_type max_size() const noexcept
Definition: stl_vector.h:659
difference_type position(size_type __sub=0) const
Gets the offset of the beginning of the indicated submatch.
Definition: regex.h:1679
string_type lookup_collatename(_Fwd_iter __first, _Fwd_iter __last) const
Gets a collation element by name.
locale_type getloc() const
Gets a copy of the current locale in use by the regex_traits object.
Definition: regex.h:384
basic_regex< char > regex
Standard regular expressions.
Definition: regex.h:800
regex_traits()
Constructs a default traits object.
Definition: regex.h:171
regex_iterator operator++(int)
Postincrements a regex_iterator.
Definition: regex.h:2480
string_type transform_primary(_Fwd_iter __first, _Fwd_iter __last) const
Gets a sort key for a character sequence, independent of case.
Definition: regex.h:261
sub_match< wstring::const_iterator > wssub_match
Regex submatch over a standard wide string.
Definition: regex.h:938
regex_token_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type &__re, const std::vector< int > &__submatches, regex_constants::match_flag_type __m=regex_constants::match_default)
Definition: regex.h:2569
bool operator!=(const match_results< _Bi_iter, _Alloc > &__m1, const match_results< _Bi_iter, _Alloc > &__m2)
Compares two match_results for inequality.
Definition: regex.h:1931
reference operator[](size_type __n) noexcept
Subscript access to the data contained in the vector.
Definition: stl_vector.h:779
regex_token_iterator< string::const_iterator > sregex_token_iterator
Token iterator for standard strings.
Definition: regex.h:2718
string_type str() const
Gets the matching sequence as a string.
Definition: regex.h:879
Forward iterators support a superset of input iterator operations.
bool operator!=(const regex_token_iterator &__rhs) const
Compares a regex_token_iterator to another for inequality.
Definition: regex.h:2639
const_reference suffix() const
Gets a sub_match representing the match suffix.
Definition: regex.h:1744
regex_iterator & operator=(const regex_iterator &__rhs)=default
Assigns one regex_iterator to another.
iterator begin()
Definition: basic_string.h:614
char_type translate_nocase(char_type __c) const
Translates a character into a case-insensitive equivalent.
Definition: regex.h:208
sub_match< const wchar_t * > wcsub_match
Regex submatch over a C-style null-terminated wide string.
Definition: regex.h:935
regex_iterator & operator++()
Increments a regex_iterator.
auto end(_Container &__cont) -> decltype(__cont.end())
Return an iterator pointing to one past the last element of the container.
Definition: range_access.h:68
regex_token_iterator & operator++()
Increments a regex_token_iterator.
size_type max_size() const
Gets the number of matches and submatches.
Definition: regex.h:1634
size_type size() const noexcept
Returns the number of characters in the string, not including any null-termination.
Definition: basic_string.h:724
A smart pointer with reference-counted copy semantics.
Definition: shared_ptr.h:93
bool operator==(const regex_iterator &__rhs) const
Tests the equivalence of two regex iterators.
const _CharT * c_str() const noexcept
Return const pointer to null-terminated contents.
syntax_option_type
This is a bitmask type indicating how to interpret the regex.
regex_token_iterator()
Default constructs a regex_token_iterator.
Definition: regex.h:2531
auto begin(_Container &__cont) -> decltype(__cont.begin())
Return an iterator pointing to the first element of the container.
Definition: range_access.h:48
match_flag_type
This is a bitmask type indicating regex matching rules.
const_reference prefix() const
Gets a sub_match representing the match prefix.
Definition: regex.h:1727
void swap(vector &__x) noexcept(_Alloc_traits::_S_nothrow_swap())
Swaps data with another vector.
Definition: stl_vector.h:1194
bool regex_match(_Bi_iter __s, _Bi_iter __e, match_results< _Bi_iter, _Alloc > &__m, const basic_regex< _Ch_type, _Rx_traits > &__re, regex_constants::match_flag_type __flags=regex_constants::match_default)
Determines if there is a match between the regular expression e and all of the character sequence [fi...
Definition: regex.h:1973
_Siter_base< _Iterator >::iterator_type __base(_Iterator __it)
Definition: functions.h:558
bool regex_search(_Bi_iter __s, _Bi_iter __e, match_results< _Bi_iter, _Alloc > &__m, const basic_regex< _Ch_type, _Rx_traits > &__re, regex_constants::match_flag_type __flags=regex_constants::match_default)
Definition: regex.h:2118
regex_token_iterator(const regex_token_iterator &__rhs)
Copy constructs a regex_token_iterator.
Definition: regex.h:2617
int compare(const basic_string &__str) const
Compare to a string.
back_insert_iterator< _Container > back_inserter(_Container &__x)
Definition: stl_iterator.h:480
string_type format(const char_type *__fmt, match_flag_type __flags=regex_constants::format_default) const
Definition: regex.h:1830
iterator_traits< _InputIterator >::difference_type distance(_InputIterator __first, _InputIterator __last)
A generalization of pointer arithmetic.
const_reference operator[](size_type __sub) const
Gets a sub_match reference for the match or submatch.
Definition: regex.h:1710
The results of a match or search operation.
Definition: regex.h:38
_BiIter first
second_type is the second bound type
Definition: stl_pair.h:101
regex_token_iterator< const char * > cregex_token_iterator
Token iterator for C-style NULL-terminated strings.
Definition: regex.h:2715
int compare(const string_type &__s) const
Compares this sub_match to a string.
Definition: regex.h:909
regex_iterator()
Provides a singular iterator, useful for indicating one-past-the-end of a range.
Definition: regex.h:2412
ISO C++ entities toplevel namespace is std.
char_type translate(char_type __c) const
Performs the identity translation.
Definition: regex.h:195
const value_type * operator->() const
Selects a regex_iterator member.
Definition: regex.h:2467
bool equal(_II1 __first1, _II1 __last1, _II2 __first2)
Tests a range for element-wise equality.
bool operator!=(const regex_iterator &__rhs) const
Tests the inequivalence of two regex iterators.
Definition: regex.h:2453
regex_token_iterator & operator=(const regex_token_iterator &__rhs)
Assigns a regex_token_iterator to another.
Basis for explicit traits specializations.
Definition: char_traits.h:227
bool operator==(const regex_token_iterator &__rhs) const
Compares a regex_token_iterator to another for equality.
const_iterator begin() const
Gets an iterator to the start of the sub_match collection.
Definition: regex.h:1756
difference_type length() const
Definition: regex.h:853
const value_type * operator->() const
Selects a regex_token_iterator member.
Definition: regex.h:2653
_Tp * data() noexcept
Definition: stl_vector.h:890
match_results(const _Alloc &__a=_Alloc())
Constructs a default match_results container.
Definition: regex.h:1570
regex_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type &__re, regex_constants::match_flag_type __m=regex_constants::match_default)
Definition: regex.h:2423
regex_token_iterator< const wchar_t * > wcregex_token_iterator
Token iterator for C-style NULL-terminated wide strings.
Definition: regex.h:2722
Describes aspects of a regular expression.
Definition: regex.h:91
_Out_iter format(_Out_iter __out, const char_type *__fmt_first, const char_type *__fmt_last, match_flag_type __flags=regex_constants::format_default) const
_Out_iter regex_replace(_Out_iter __out, _Bi_iter __first, _Bi_iter __last, const basic_regex< _Ch_type, _Rx_traits > &__e, const basic_string< _Ch_type, _St, _Sa > &__fmt, regex_constants::match_flag_type __flags=regex_constants::match_default)
Search for a regular expression within a range for multiple times, and replace the matched parts thro...
Definition: regex.h:2252
basic_regex< wchar_t > wregex
Standard wide-character regular expressions.
Definition: regex.h:804
bool operator==(const match_results< _Bi_iter, _Alloc > &__m1, const match_results< _Bi_iter, _Alloc > &__m2)
Compares two match_results for equality.
Definition: regex.h:1907
const value_type & operator*() const
Dereferences a regex_iterator.
Definition: regex.h:2460
locale_type imbue(locale_type __loc)
Imbues the regex_traits object with a copy of a new locale.
Definition: regex.h:373
sub_match< string::const_iterator > ssub_match
Standard regex submatch over a standard string.
Definition: regex.h:931
bool empty() const
Indicates if the match_results contains no results.
Definition: regex.h:1643
bool operator>=(const basic_string< _CharT, _Traits, _Alloc > &__lhs, const basic_string< _CharT, _Traits, _Alloc > &__rhs)
Test if string doesn't precede string.
regex_token_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type &__re, initializer_list< int > __submatches, regex_constants::match_flag_type __m=regex_constants::match_default)
Definition: regex.h:2586
string_type str(size_type __sub=0) const
Gets the match or submatch converted to a string type.
Definition: regex.h:1695
_Out_iter format(_Out_iter __out, const basic_string< char_type, _St, _Sa > &__fmt, match_flag_type __flags=regex_constants::format_default) const
Definition: regex.h:1806
const_iterator cend() const
Gets an iterator to one-past-the-end of the collection.
Definition: regex.h:1777
bool operator>(const basic_string< _CharT, _Traits, _Alloc > &__lhs, const basic_string< _CharT, _Traits, _Alloc > &__rhs)
Test if string follows string.
size_type size() const noexcept
Definition: stl_vector.h:654
void swap(match_results &__that)
Swaps the contents of two match_results.
Definition: regex.h:1866
size_type size() const
Gets the number of matches and submatches.
Definition: regex.h:1627
static std::size_t length(const char_type *__p)
Gives the length of a C-style string starting at __p.
Definition: regex.h:184
regex_token_iterator operator++(int)
Postincrements a regex_token_iterator.
Definition: regex.h:2666
Struct holding two objects of arbitrary type.
Definition: stl_pair.h:96
A standard container which offers fixed time access to individual elements in any order...
Definition: stl_vector.h:214
void swap(_Tp &, _Tp &) noexcept(__and_< is_nothrow_move_constructible< _Tp >, is_nothrow_move_assignable< _Tp >>::value)
Swaps two values.
Definition: move.h:166
allocator_type get_allocator() const
Gets a copy of the allocator.
Definition: regex.h:1852
Facet for localized string comparison.
int compare(const sub_match &__s) const
Compares this and another matched sequence.
Definition: regex.h:896
string_type transform(_Fwd_iter __first, _Fwd_iter __last) const
Gets a sort key for a character sequence.
Definition: regex.h:237
const value_type & operator*() const
Dereferences a regex_token_iterator.
Definition: regex.h:2646
basic_string< char_type, _St, _Sa > format(const basic_string< char_type, _St, _Sa > &__fmt, match_flag_type __flags=regex_constants::format_default) const
Definition: regex.h:1818
char_class_type lookup_classname(_Fwd_iter __first, _Fwd_iter __last, bool __icase=false) const
Maps one or more characters to a named character classification.
_BiIter second
first is a copy of the first object
Definition: stl_pair.h:102
regex_token_iterator< wstring::const_iterator > wsregex_token_iterator
Token iterator for standard wide-character strings.
Definition: regex.h:2725
Takes a regex and an input string in and do the matching.
Definition: regex.h:61
Managing sequences of characters and character-like objects.
Definition: basic_string.h:112
difference_type length(size_type __sub=0) const
Gets the length of the indicated submatch.
Definition: regex.h:1662
bool ready() const
Indicates if the match_results is ready.
Definition: regex.h:1610
const_iterator end() const
Gets an iterator to one-past-the-end of the collection.
Definition: regex.h:1770
sub_match< const char * > csub_match
Standard regex submatch over a C-style null-terminated string.
Definition: regex.h:928