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  _Base_type::swap(__that);
1869  swap(_M_begin, __that._M_begin);
1870  }
1871  //@}
1872 
1873  private:
1874  template<typename, typename, typename, bool>
1875  friend class __detail::_Executor;
1876 
1877  template<typename, typename, typename>
1878  friend class regex_iterator;
1879 
1880  template<typename _Bp, typename _Ap, typename _Cp, typename _Rp,
1881  __detail::_RegexExecutorPolicy, bool>
1882  friend bool
1883  __detail::__regex_algo_impl(_Bp, _Bp, match_results<_Bp, _Ap>&,
1884  const basic_regex<_Cp, _Rp>&,
1886 
1887  _Bi_iter _M_begin;
1888  bool _M_in_iterator;
1889  };
1890 
1891  typedef match_results<const char*> cmatch;
1892  typedef match_results<string::const_iterator> smatch;
1893 #ifdef _GLIBCXX_USE_WCHAR_T
1894  typedef match_results<const wchar_t*> wcmatch;
1895  typedef match_results<wstring::const_iterator> wsmatch;
1896 #endif
1897 
1898  // match_results comparisons
1899  /**
1900  * @brief Compares two match_results for equality.
1901  * @returns true if the two objects refer to the same match,
1902  * false otherwise.
1903  */
1904  template<typename _Bi_iter, typename _Alloc>
1905  inline bool
1907  const match_results<_Bi_iter, _Alloc>& __m2)
1908  {
1909  if (__m1.ready() != __m2.ready())
1910  return false;
1911  if (!__m1.ready()) // both are not ready
1912  return true;
1913  if (__m1.empty() != __m2.empty())
1914  return false;
1915  if (__m1.empty()) // both are empty
1916  return true;
1917  return __m1.prefix() == __m2.prefix()
1918  && __m1.size() == __m2.size()
1919  && std::equal(__m1.begin(), __m1.end(), __m2.begin())
1920  && __m1.suffix() == __m2.suffix();
1921  }
1922 
1923  /**
1924  * @brief Compares two match_results for inequality.
1925  * @returns true if the two objects do not refer to the same match,
1926  * false otherwise.
1927  */
1928  template<typename _Bi_iter, class _Alloc>
1929  inline bool
1931  const match_results<_Bi_iter, _Alloc>& __m2)
1932  { return !(__m1 == __m2); }
1933 
1934  // [7.10.6] match_results swap
1935  /**
1936  * @brief Swaps two match results.
1937  * @param __lhs A match result.
1938  * @param __rhs A match result.
1939  *
1940  * The contents of the two match_results objects are swapped.
1941  */
1942  template<typename _Bi_iter, typename _Alloc>
1943  inline void
1946  { __lhs.swap(__rhs); }
1947 
1948  // [7.11.2] Function template regex_match
1949  /**
1950  * @name Matching, Searching, and Replacing
1951  */
1952  //@{
1953 
1954  /**
1955  * @brief Determines if there is a match between the regular expression @p e
1956  * and all of the character sequence [first, last).
1957  *
1958  * @param __s Start of the character sequence to match.
1959  * @param __e One-past-the-end of the character sequence to match.
1960  * @param __m The match results.
1961  * @param __re The regular expression.
1962  * @param __flags Controls how the regular expression is matched.
1963  *
1964  * @retval true A match exists.
1965  * @retval false Otherwise.
1966  *
1967  * @throws an exception of type regex_error.
1968  */
1969  template<typename _Bi_iter, typename _Alloc,
1970  typename _Ch_type, typename _Rx_traits>
1971  inline bool
1972  regex_match(_Bi_iter __s,
1973  _Bi_iter __e,
1978  {
1979  return __detail::__regex_algo_impl<_Bi_iter, _Alloc, _Ch_type, _Rx_traits,
1980  __detail::_RegexExecutorPolicy::_S_auto, true>
1981  (__s, __e, __m, __re, __flags);
1982  }
1983 
1984  /**
1985  * @brief Indicates if there is a match between the regular expression @p e
1986  * and all of the character sequence [first, last).
1987  *
1988  * @param __first Beginning of the character sequence to match.
1989  * @param __last One-past-the-end of the character sequence to match.
1990  * @param __re The regular expression.
1991  * @param __flags Controls how the regular expression is matched.
1992  *
1993  * @retval true A match exists.
1994  * @retval false Otherwise.
1995  *
1996  * @throws an exception of type regex_error.
1997  */
1998  template<typename _Bi_iter, typename _Ch_type, typename _Rx_traits>
1999  inline bool
2000  regex_match(_Bi_iter __first, _Bi_iter __last,
2004  {
2005  match_results<_Bi_iter> __what;
2006  return regex_match(__first, __last, __what, __re, __flags);
2007  }
2008 
2009  /**
2010  * @brief Determines if there is a match between the regular expression @p e
2011  * and a C-style null-terminated string.
2012  *
2013  * @param __s The C-style null-terminated string to match.
2014  * @param __m The match results.
2015  * @param __re The regular expression.
2016  * @param __f Controls how the regular expression is matched.
2017  *
2018  * @retval true A match exists.
2019  * @retval false Otherwise.
2020  *
2021  * @throws an exception of type regex_error.
2022  */
2023  template<typename _Ch_type, typename _Alloc, typename _Rx_traits>
2024  inline bool
2025  regex_match(const _Ch_type* __s,
2030  { return regex_match(__s, __s + _Rx_traits::length(__s), __m, __re, __f); }
2031 
2032  /**
2033  * @brief Determines if there is a match between the regular expression @p e
2034  * and a string.
2035  *
2036  * @param __s The string to match.
2037  * @param __m The match results.
2038  * @param __re The regular expression.
2039  * @param __flags Controls how the regular expression is matched.
2040  *
2041  * @retval true A match exists.
2042  * @retval false Otherwise.
2043  *
2044  * @throws an exception of type regex_error.
2045  */
2046  template<typename _Ch_traits, typename _Ch_alloc,
2047  typename _Alloc, typename _Ch_type, typename _Rx_traits>
2048  inline bool
2050  match_results<typename basic_string<_Ch_type,
2051  _Ch_traits, _Ch_alloc>::const_iterator, _Alloc>& __m,
2055  { return regex_match(__s.begin(), __s.end(), __m, __re, __flags); }
2056 
2057  /**
2058  * @brief Indicates if there is a match between the regular expression @p e
2059  * and a C-style null-terminated string.
2060  *
2061  * @param __s The C-style null-terminated string to match.
2062  * @param __re The regular expression.
2063  * @param __f Controls how the regular expression is matched.
2064  *
2065  * @retval true A match exists.
2066  * @retval false Otherwise.
2067  *
2068  * @throws an exception of type regex_error.
2069  */
2070  template<typename _Ch_type, class _Rx_traits>
2071  inline bool
2072  regex_match(const _Ch_type* __s,
2076  { return regex_match(__s, __s + _Rx_traits::length(__s), __re, __f); }
2077 
2078  /**
2079  * @brief Indicates if there is a match between the regular expression @p e
2080  * and a string.
2081  *
2082  * @param __s [IN] The string to match.
2083  * @param __re [IN] The regular expression.
2084  * @param __flags [IN] Controls how the regular expression is matched.
2085  *
2086  * @retval true A match exists.
2087  * @retval false Otherwise.
2088  *
2089  * @throws an exception of type regex_error.
2090  */
2091  template<typename _Ch_traits, typename _Str_allocator,
2092  typename _Ch_type, typename _Rx_traits>
2093  inline bool
2098  { return regex_match(__s.begin(), __s.end(), __re, __flags); }
2099 
2100  // [7.11.3] Function template regex_search
2101  /**
2102  * Searches for a regular expression within a range.
2103  * @param __s [IN] The start of the string to search.
2104  * @param __e [IN] One-past-the-end of the string to search.
2105  * @param __m [OUT] The match results.
2106  * @param __re [IN] The regular expression to search for.
2107  * @param __flags [IN] Search policy flags.
2108  * @retval true A match was found within the string.
2109  * @retval false No match was found within the string, the content of %m is
2110  * undefined.
2111  *
2112  * @throws an exception of type regex_error.
2113  */
2114  template<typename _Bi_iter, typename _Alloc,
2115  typename _Ch_type, typename _Rx_traits>
2116  inline bool
2117  regex_search(_Bi_iter __s, _Bi_iter __e,
2122  {
2123  return __detail::__regex_algo_impl<_Bi_iter, _Alloc, _Ch_type, _Rx_traits,
2124  __detail::_RegexExecutorPolicy::_S_auto, false>
2125  (__s, __e, __m, __re, __flags);
2126  }
2127 
2128  /**
2129  * Searches for a regular expression within a range.
2130  * @param __first [IN] The start of the string to search.
2131  * @param __last [IN] One-past-the-end of the string to search.
2132  * @param __re [IN] The regular expression to search for.
2133  * @param __flags [IN] Search policy flags.
2134  * @retval true A match was found within the string.
2135  * @retval false No match was found within the string.
2136  *
2137  * @throws an exception of type regex_error.
2138  */
2139  template<typename _Bi_iter, typename _Ch_type, typename _Rx_traits>
2140  inline bool
2141  regex_search(_Bi_iter __first, _Bi_iter __last,
2145  {
2146  match_results<_Bi_iter> __what;
2147  return regex_search(__first, __last, __what, __re, __flags);
2148  }
2149 
2150  /**
2151  * @brief Searches for a regular expression within a C-string.
2152  * @param __s [IN] A C-string to search for the regex.
2153  * @param __m [OUT] The set of regex matches.
2154  * @param __e [IN] The regex to search for in @p s.
2155  * @param __f [IN] The search flags.
2156  * @retval true A match was found within the string.
2157  * @retval false No match was found within the string, the content of %m is
2158  * undefined.
2159  *
2160  * @throws an exception of type regex_error.
2161  */
2162  template<typename _Ch_type, class _Alloc, class _Rx_traits>
2163  inline bool
2164  regex_search(const _Ch_type* __s,
2169  { return regex_search(__s, __s + _Rx_traits::length(__s), __m, __e, __f); }
2170 
2171  /**
2172  * @brief Searches for a regular expression within a C-string.
2173  * @param __s [IN] The C-string to search.
2174  * @param __e [IN] The regular expression to search for.
2175  * @param __f [IN] Search policy flags.
2176  * @retval true A match was found within the string.
2177  * @retval false No match was found within the string.
2178  *
2179  * @throws an exception of type regex_error.
2180  */
2181  template<typename _Ch_type, typename _Rx_traits>
2182  inline bool
2183  regex_search(const _Ch_type* __s,
2187  { return regex_search(__s, __s + _Rx_traits::length(__s), __e, __f); }
2188 
2189  /**
2190  * @brief Searches for a regular expression within a string.
2191  * @param __s [IN] The string to search.
2192  * @param __e [IN] The regular expression to search for.
2193  * @param __flags [IN] Search policy flags.
2194  * @retval true A match was found within the string.
2195  * @retval false No match was found within the string.
2196  *
2197  * @throws an exception of type regex_error.
2198  */
2199  template<typename _Ch_traits, typename _String_allocator,
2200  typename _Ch_type, typename _Rx_traits>
2201  inline bool
2202  regex_search(const basic_string<_Ch_type, _Ch_traits,
2203  _String_allocator>& __s,
2207  { return regex_search(__s.begin(), __s.end(), __e, __flags); }
2208 
2209  /**
2210  * @brief Searches for a regular expression within a string.
2211  * @param __s [IN] A C++ string to search for the regex.
2212  * @param __m [OUT] The set of regex matches.
2213  * @param __e [IN] The regex to search for in @p s.
2214  * @param __f [IN] The search flags.
2215  * @retval true A match was found within the string.
2216  * @retval false No match was found within the string, the content of %m is
2217  * undefined.
2218  *
2219  * @throws an exception of type regex_error.
2220  */
2221  template<typename _Ch_traits, typename _Ch_alloc,
2222  typename _Alloc, typename _Ch_type,
2223  typename _Rx_traits>
2224  inline bool
2226  match_results<typename basic_string<_Ch_type,
2227  _Ch_traits, _Ch_alloc>::const_iterator, _Alloc>& __m,
2231  { return regex_search(__s.begin(), __s.end(), __m, __e, __f); }
2232 
2233  // std [28.11.4] Function template regex_replace
2234  /**
2235  * @brief Search for a regular expression within a range for multiple times,
2236  and replace the matched parts through filling a format string.
2237  * @param __out [OUT] The output iterator.
2238  * @param __first [IN] The start of the string to search.
2239  * @param __last [IN] One-past-the-end of the string to search.
2240  * @param __e [IN] The regular expression to search for.
2241  * @param __fmt [IN] The format string.
2242  * @param __flags [IN] Search and replace policy flags.
2243  *
2244  * @returns __out
2245  * @throws an exception of type regex_error.
2246  */
2247  template<typename _Out_iter, typename _Bi_iter,
2248  typename _Rx_traits, typename _Ch_type,
2249  typename _St, typename _Sa>
2250  inline _Out_iter
2251  regex_replace(_Out_iter __out, _Bi_iter __first, _Bi_iter __last,
2253  const basic_string<_Ch_type, _St, _Sa>& __fmt,
2256  {
2257  return regex_replace(__out, __first, __last, __e, __fmt.c_str(), __flags);
2258  }
2259 
2260  /**
2261  * @brief Search for a regular expression within a range for multiple times,
2262  and replace the matched parts through filling a format C-string.
2263  * @param __out [OUT] The output iterator.
2264  * @param __first [IN] The start of the string to search.
2265  * @param __last [IN] One-past-the-end of the string to search.
2266  * @param __e [IN] The regular expression to search for.
2267  * @param __fmt [IN] The format C-string.
2268  * @param __flags [IN] Search and replace policy flags.
2269  *
2270  * @returns __out
2271  * @throws an exception of type regex_error.
2272  */
2273  template<typename _Out_iter, typename _Bi_iter,
2274  typename _Rx_traits, typename _Ch_type>
2275  _Out_iter
2276  regex_replace(_Out_iter __out, _Bi_iter __first, _Bi_iter __last,
2277  const basic_regex<_Ch_type, _Rx_traits>& __e,
2278  const _Ch_type* __fmt,
2281 
2282  /**
2283  * @brief Search for a regular expression within a string for multiple times,
2284  and replace the matched parts through filling a format string.
2285  * @param __s [IN] The string to search and replace.
2286  * @param __e [IN] The regular expression to search for.
2287  * @param __fmt [IN] The format string.
2288  * @param __flags [IN] Search and replace policy flags.
2289  *
2290  * @returns The string after replacing.
2291  * @throws an exception of type regex_error.
2292  */
2293  template<typename _Rx_traits, typename _Ch_type,
2294  typename _St, typename _Sa, typename _Fst, typename _Fsa>
2295  inline basic_string<_Ch_type, _St, _Sa>
2301  {
2304  __s.begin(), __s.end(), __e, __fmt, __flags);
2305  return __result;
2306  }
2307 
2308  /**
2309  * @brief Search for a regular expression within a string for multiple times,
2310  and replace the matched parts through filling a format C-string.
2311  * @param __s [IN] The string to search and replace.
2312  * @param __e [IN] The regular expression to search for.
2313  * @param __fmt [IN] The format C-string.
2314  * @param __flags [IN] Search and replace policy flags.
2315  *
2316  * @returns The string after replacing.
2317  * @throws an exception of type regex_error.
2318  */
2319  template<typename _Rx_traits, typename _Ch_type,
2320  typename _St, typename _Sa>
2321  inline basic_string<_Ch_type, _St, _Sa>
2324  const _Ch_type* __fmt,
2327  {
2330  __s.begin(), __s.end(), __e, __fmt, __flags);
2331  return __result;
2332  }
2333 
2334  /**
2335  * @brief Search for a regular expression within a C-string for multiple
2336  times, and replace the matched parts through filling a format string.
2337  * @param __s [IN] The C-string to search and replace.
2338  * @param __e [IN] The regular expression to search for.
2339  * @param __fmt [IN] The format string.
2340  * @param __flags [IN] Search and replace policy flags.
2341  *
2342  * @returns The string after replacing.
2343  * @throws an exception of type regex_error.
2344  */
2345  template<typename _Rx_traits, typename _Ch_type,
2346  typename _St, typename _Sa>
2347  inline basic_string<_Ch_type>
2348  regex_replace(const _Ch_type* __s,
2350  const basic_string<_Ch_type, _St, _Sa>& __fmt,
2353  {
2354  basic_string<_Ch_type> __result;
2355  regex_replace(std::back_inserter(__result), __s,
2356  __s + char_traits<_Ch_type>::length(__s),
2357  __e, __fmt, __flags);
2358  return __result;
2359  }
2360 
2361  /**
2362  * @brief Search for a regular expression within a C-string for multiple
2363  times, and replace the matched parts through filling a format C-string.
2364  * @param __s [IN] The C-string to search and replace.
2365  * @param __e [IN] The regular expression to search for.
2366  * @param __fmt [IN] The format C-string.
2367  * @param __flags [IN] Search and replace policy flags.
2368  *
2369  * @returns The string after replacing.
2370  * @throws an exception of type regex_error.
2371  */
2372  template<typename _Rx_traits, typename _Ch_type>
2373  inline basic_string<_Ch_type>
2374  regex_replace(const _Ch_type* __s,
2376  const _Ch_type* __fmt,
2379  {
2380  basic_string<_Ch_type> __result;
2381  regex_replace(std::back_inserter(__result), __s,
2382  __s + char_traits<_Ch_type>::length(__s),
2383  __e, __fmt, __flags);
2384  return __result;
2385  }
2386 
2387  //@}
2388 
2389  // std [28.12] Class template regex_iterator
2390  /**
2391  * An iterator adaptor that will provide repeated calls of regex_search over
2392  * a range until no more matches remain.
2393  */
2394  template<typename _Bi_iter,
2395  typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type,
2396  typename _Rx_traits = regex_traits<_Ch_type> >
2398  {
2399  public:
2401  typedef match_results<_Bi_iter> value_type;
2402  typedef std::ptrdiff_t difference_type;
2403  typedef const value_type* pointer;
2404  typedef const value_type& reference;
2406 
2407  /**
2408  * @brief Provides a singular iterator, useful for indicating
2409  * one-past-the-end of a range.
2410  */
2412  : _M_match()
2413  { }
2414 
2415  /**
2416  * Constructs a %regex_iterator...
2417  * @param __a [IN] The start of a text range to search.
2418  * @param __b [IN] One-past-the-end of the text range to search.
2419  * @param __re [IN] The regular expression to match.
2420  * @param __m [IN] Policy flags for match rules.
2421  */
2422  regex_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type& __re,
2425  : _M_begin(__a), _M_end(__b), _M_pregex(&__re), _M_flags(__m), _M_match()
2426  {
2427  if (!regex_search(_M_begin, _M_end, _M_match, *_M_pregex, _M_flags))
2428  *this = regex_iterator();
2429  }
2430 
2431  /**
2432  * Copy constructs a %regex_iterator.
2433  */
2434  regex_iterator(const regex_iterator& __rhs) = default;
2435 
2436  /**
2437  * @brief Assigns one %regex_iterator to another.
2438  */
2440  operator=(const regex_iterator& __rhs) = default;
2441 
2442  /**
2443  * @brief Tests the equivalence of two regex iterators.
2444  */
2445  bool
2446  operator==(const regex_iterator& __rhs) const;
2447 
2448  /**
2449  * @brief Tests the inequivalence of two regex iterators.
2450  */
2451  bool
2452  operator!=(const regex_iterator& __rhs) const
2453  { return !(*this == __rhs); }
2454 
2455  /**
2456  * @brief Dereferences a %regex_iterator.
2457  */
2458  const value_type&
2459  operator*() const
2460  { return _M_match; }
2461 
2462  /**
2463  * @brief Selects a %regex_iterator member.
2464  */
2465  const value_type*
2466  operator->() const
2467  { return &_M_match; }
2468 
2469  /**
2470  * @brief Increments a %regex_iterator.
2471  */
2473  operator++();
2474 
2475  /**
2476  * @brief Postincrements a %regex_iterator.
2477  */
2480  {
2481  auto __tmp = *this;
2482  ++(*this);
2483  return __tmp;
2484  }
2485 
2486  private:
2487  _Bi_iter _M_begin;
2488  _Bi_iter _M_end;
2489  const regex_type* _M_pregex;
2491  match_results<_Bi_iter> _M_match;
2492  };
2493 
2494  typedef regex_iterator<const char*> cregex_iterator;
2495  typedef regex_iterator<string::const_iterator> sregex_iterator;
2496 #ifdef _GLIBCXX_USE_WCHAR_T
2497  typedef regex_iterator<const wchar_t*> wcregex_iterator;
2498  typedef regex_iterator<wstring::const_iterator> wsregex_iterator;
2499 #endif
2500 
2501  // [7.12.2] Class template regex_token_iterator
2502  /**
2503  * Iterates over submatches in a range (or @a splits a text string).
2504  *
2505  * The purpose of this iterator is to enumerate all, or all specified,
2506  * matches of a regular expression within a text range. The dereferenced
2507  * value of an iterator of this class is a std::sub_match object.
2508  */
2509  template<typename _Bi_iter,
2510  typename _Ch_type = typename iterator_traits<_Bi_iter>::value_type,
2511  typename _Rx_traits = regex_traits<_Ch_type> >
2513  {
2514  public:
2516  typedef sub_match<_Bi_iter> value_type;
2517  typedef std::ptrdiff_t difference_type;
2518  typedef const value_type* pointer;
2519  typedef const value_type& reference;
2521 
2522  public:
2523  /**
2524  * @brief Default constructs a %regex_token_iterator.
2525  *
2526  * A default-constructed %regex_token_iterator is a singular iterator
2527  * that will compare equal to the one-past-the-end value for any
2528  * iterator of the same type.
2529  */
2531  : _M_position(), _M_subs(), _M_suffix(), _M_n(0), _M_result(nullptr),
2532  _M_has_m1(false)
2533  { }
2534 
2535  /**
2536  * Constructs a %regex_token_iterator...
2537  * @param __a [IN] The start of the text to search.
2538  * @param __b [IN] One-past-the-end of the text to search.
2539  * @param __re [IN] The regular expression to search for.
2540  * @param __submatch [IN] Which submatch to return. There are some
2541  * special values for this parameter:
2542  * - -1 each enumerated subexpression does NOT
2543  * match the regular expression (aka field
2544  * splitting)
2545  * - 0 the entire string matching the
2546  * subexpression is returned for each match
2547  * within the text.
2548  * - >0 enumerates only the indicated
2549  * subexpression from a match within the text.
2550  * @param __m [IN] Policy flags for match rules.
2551  */
2552  regex_token_iterator(_Bi_iter __a, _Bi_iter __b, const regex_type& __re,
2553  int __submatch = 0,
2556  : _M_position(__a, __b, __re, __m), _M_subs(1, __submatch), _M_n(0)
2557  { _M_init(__a, __b); }
2558 
2559  /**
2560  * Constructs a %regex_token_iterator...
2561  * @param __a [IN] The start of the text to search.
2562  * @param __b [IN] One-past-the-end of the text to search.
2563  * @param __re [IN] The regular expression to search for.
2564  * @param __submatches [IN] A list of subexpressions to return for each
2565  * regular expression match within the text.
2566  * @param __m [IN] Policy flags for match rules.
2567  */
2568  regex_token_iterator(_Bi_iter __a, _Bi_iter __b,
2569  const regex_type& __re,
2570  const std::vector<int>& __submatches,
2573  : _M_position(__a, __b, __re, __m), _M_subs(__submatches), _M_n(0)
2574  { _M_init(__a, __b); }
2575 
2576  /**
2577  * Constructs a %regex_token_iterator...
2578  * @param __a [IN] The start of the text to search.
2579  * @param __b [IN] One-past-the-end of the text to search.
2580  * @param __re [IN] The regular expression to search for.
2581  * @param __submatches [IN] A list of subexpressions to return for each
2582  * regular expression match within the text.
2583  * @param __m [IN] Policy flags for match rules.
2584  */
2585  regex_token_iterator(_Bi_iter __a, _Bi_iter __b,
2586  const regex_type& __re,
2587  initializer_list<int> __submatches,
2590  : _M_position(__a, __b, __re, __m), _M_subs(__submatches), _M_n(0)
2591  { _M_init(__a, __b); }
2592 
2593  /**
2594  * Constructs a %regex_token_iterator...
2595  * @param __a [IN] The start of the text to search.
2596  * @param __b [IN] One-past-the-end of the text to search.
2597  * @param __re [IN] The regular expression to search for.
2598  * @param __submatches [IN] A list of subexpressions to return for each
2599  * regular expression match within the text.
2600  * @param __m [IN] Policy flags for match rules.
2601  */
2602  template<std::size_t _Nm>
2603  regex_token_iterator(_Bi_iter __a, _Bi_iter __b,
2604  const regex_type& __re,
2605  const int (&__submatches)[_Nm],
2608  : _M_position(__a, __b, __re, __m),
2609  _M_subs(__submatches, __submatches + _Nm), _M_n(0)
2610  { _M_init(__a, __b); }
2611 
2612  /**
2613  * @brief Copy constructs a %regex_token_iterator.
2614  * @param __rhs [IN] A %regex_token_iterator to copy.
2615  */
2617  : _M_position(__rhs._M_position), _M_subs(__rhs._M_subs),
2618  _M_suffix(__rhs._M_suffix), _M_n(__rhs._M_n), _M_has_m1(__rhs._M_has_m1)
2619  { _M_normalize_result(); }
2620 
2621  /**
2622  * @brief Assigns a %regex_token_iterator to another.
2623  * @param __rhs [IN] A %regex_token_iterator to copy.
2624  */
2626  operator=(const regex_token_iterator& __rhs);
2627 
2628  /**
2629  * @brief Compares a %regex_token_iterator to another for equality.
2630  */
2631  bool
2632  operator==(const regex_token_iterator& __rhs) const;
2633 
2634  /**
2635  * @brief Compares a %regex_token_iterator to another for inequality.
2636  */
2637  bool
2638  operator!=(const regex_token_iterator& __rhs) const
2639  { return !(*this == __rhs); }
2640 
2641  /**
2642  * @brief Dereferences a %regex_token_iterator.
2643  */
2644  const value_type&
2645  operator*() const
2646  { return *_M_result; }
2647 
2648  /**
2649  * @brief Selects a %regex_token_iterator member.
2650  */
2651  const value_type*
2652  operator->() const
2653  { return _M_result; }
2654 
2655  /**
2656  * @brief Increments a %regex_token_iterator.
2657  */
2659  operator++();
2660 
2661  /**
2662  * @brief Postincrements a %regex_token_iterator.
2663  */
2666  {
2667  auto __tmp = *this;
2668  ++(*this);
2669  return __tmp;
2670  }
2671 
2672  private:
2674 
2675  void
2676  _M_init(_Bi_iter __a, _Bi_iter __b);
2677 
2678  const value_type&
2679  _M_current_match() const
2680  {
2681  if (_M_subs[_M_n] == -1)
2682  return (*_M_position).prefix();
2683  else
2684  return (*_M_position)[_M_subs[_M_n]];
2685  }
2686 
2687  constexpr bool
2688  _M_end_of_seq() const
2689  { return _M_result == nullptr; }
2690 
2691  // [28.12.2.2.4]
2692  void
2693  _M_normalize_result()
2694  {
2695  if (_M_position != _Position())
2696  _M_result = &_M_current_match();
2697  else if (_M_has_m1)
2698  _M_result = &_M_suffix;
2699  else
2700  _M_result = nullptr;
2701  }
2702 
2703  _Position _M_position;
2704  std::vector<int> _M_subs;
2705  value_type _M_suffix;
2706  std::size_t _M_n;
2707  const value_type* _M_result;
2708 
2709  // Show whether _M_subs contains -1
2710  bool _M_has_m1;
2711  };
2712 
2713  /** @brief Token iterator for C-style NULL-terminated strings. */
2715 
2716  /** @brief Token iterator for standard strings. */
2718 
2719 #ifdef _GLIBCXX_USE_WCHAR_T
2720  /** @brief Token iterator for C-style NULL-terminated wide strings. */
2722 
2723  /** @brief Token iterator for standard wide-character strings. */
2725 #endif
2726 
2727  //@} // group regex
2728 _GLIBCXX_END_NAMESPACE_VERSION
2729 } // namespace
2730 
2731 #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:2603
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:2552
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:2479
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:2568
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:1930
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:2717
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:2638
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:2530
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:1972
_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:2117
regex_token_iterator(const regex_token_iterator &__rhs)
Copy constructs a regex_token_iterator.
Definition: regex.h:2616
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:2714
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:2411
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:2466
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:2452
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:2652
_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:2422
regex_token_iterator< const wchar_t * > wcregex_token_iterator
Token iterator for C-style NULL-terminated wide strings.
Definition: regex.h:2721
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:2251
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:1906
const value_type & operator*() const
Dereferences a regex_iterator.
Definition: regex.h:2459
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:2585
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:2665
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:2645
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:2724
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