|
libstdc++
|
std [28.8.1](1)
Objects of specializations of this class represent regular expressions constructed from sequences of character type _Ch_type.
Storage for the regular expression is allocated and deallocated as necessary by the member functions of this class.
| std::basic_regex::basic_regex | ( | ) | [inline] |
| std::basic_regex::basic_regex | ( | const _Ch_type * | __p, |
| flag_type | __f = regex_constants::ECMAScript |
||
| ) | [inline, explicit] |
Constructs a basic regular expression from the sequence [p, p + char_traits<_Ch_type>::length(p)) interpreted according to the flags in f.
| p | A pointer to the start of a C-style null-terminated string containing a regular expression. |
| f | Flags indicating the syntax rules and options. |
| regex_error | if p is not a valid regular expression. |
| std::basic_regex::basic_regex | ( | const _Ch_type * | __p, |
| std::size_t | __len, | ||
| flag_type | __f | ||
| ) | [inline] |
Constructs a basic regular expression from the sequence [p, p + len) interpreted according to the flags in f.
| p | A pointer to the start of a string containing a regular expression. |
| len | The length of the string containing the regular expression. |
| f | Flags indicating the syntax rules and options. |
| regex_error | if p is not a valid regular expression. |
| std::basic_regex::basic_regex | ( | const basic_regex & | __rhs | ) | [inline] |
| std::basic_regex::basic_regex | ( | const basic_regex && | __rhs | ) | [inline] |
| std::basic_regex::basic_regex | ( | const std::basic_string< _Ch_type, _Ch_traits, _Ch_alloc > & | __s, |
| flag_type | __f = regex_constants::ECMAScript |
||
| ) | [inline, explicit] |
Constructs a basic regular expression from the string s interpreted according to the flags in f.
| s | A string containing a regular expression. |
| f | Flags indicating the syntax rules and options. |
| regex_error | if s is not a valid regular expression. |
| std::basic_regex::basic_regex | ( | _InputIterator | __first, |
| _InputIterator | __last, | ||
| flag_type | __f = regex_constants::ECMAScript |
||
| ) | [inline] |
Constructs a basic regular expression from the range [first, last) interpreted according to the flags in f.
| first | The start of a range containing a valid regular expression. |
| last | The end of a range containing a valid regular expression. |
| f | The format flags of the regular expression. |
| regex_error | if [first, last) is not a valid regular expression. |
| std::basic_regex::basic_regex | ( | initializer_list< _Ch_type > | __l, |
| flag_type | __f = regex_constants::ECMAScript |
||
| ) | [inline] |
Constructs a basic regular expression from an initializer list.
| l | The initializer list. |
| f | The format flags of the regular expression. |
| regex_error | if l is not a valid regular expression. |
| std::basic_regex::~basic_regex | ( | ) | [inline] |
| basic_regex& std::basic_regex::assign | ( | const basic_regex & | __rhs | ) | [inline] |
the real assignment operator.
| rhs | Another regular expression object. |
Definition at line 547 of file regex.h.
References swap().
Referenced by operator=().
| basic_regex& std::basic_regex::assign | ( | basic_regex && | __rhs | ) | [inline] |
| basic_regex& std::basic_regex::assign | ( | const _Ch_type * | __p, |
| flag_type | __flags = regex_constants::ECMAScript |
||
| ) | [inline] |
Assigns a new regular expression to a regex object from a C-style null-terminated string containing a regular expression pattern.
| p | A pointer to a C-style null-terminated string containing a regular expression pattern. |
| flags | Syntax option flags. |
| regex_error | if p does not contain a valid regular expression pattern interpreted according to flags. If regex_error is thrown, *this remains unchanged. |
Definition at line 581 of file regex.h.
References assign().
Referenced by assign().
| basic_regex& std::basic_regex::assign | ( | const _Ch_type * | __p, |
| std::size_t | __len, | ||
| flag_type | __flags | ||
| ) | [inline] |
Assigns a new regular expression to a regex object from a C-style string containing a regular expression pattern.
| p | A pointer to a C-style string containing a regular expression pattern. |
| len | The length of the regular expression pattern string. |
| flags | Syntax option flags. |
| regex_error | if p does not contain a valid regular expression pattern interpreted according to flags. If regex_error is thrown, *this remains unchanged. |
Definition at line 599 of file regex.h.
References assign().
Referenced by assign().
| basic_regex& std::basic_regex::assign | ( | const basic_string< _Ch_type, _Ch_typeraits, _Allocator > & | __s, |
| flag_type | __f = regex_constants::ECMAScript |
||
| ) | [inline] |
Assigns a new regular expression to a regex object from a string containing a regular expression pattern.
| s | A string containing a regular expression pattern. |
| flags | Syntax option flags. |
| regex_error | if p does not contain a valid regular expression pattern interpreted according to flags. If regex_error is thrown, *this remains unchanged. |
Definition at line 615 of file regex.h.
References swap().
| basic_regex& std::basic_regex::assign | ( | _InputIterator | __first, |
| _InputIterator | __last, | ||
| flag_type | __flags = regex_constants::ECMAScript |
||
| ) | [inline] |
Assigns a new regular expression to a regex object.
| first | The start of a range containing a valid regular expression. |
| last | The end of a range containing a valid regular expression. |
| flags | Syntax option flags. |
| regex_error | if p does not contain a valid regular expression pattern interpreted according to flags. If regex_error is thrown, the object remains unchanged. |
Definition at line 638 of file regex.h.
References assign().
Referenced by assign().
| basic_regex& std::basic_regex::assign | ( | initializer_list< _Ch_type > | __l, |
| flag_type | __f = regex_constants::ECMAScript |
||
| ) | [inline] |
Assigns a new regular expression to a regex object.
| l | An initializer list representing a regular expression. |
| flags | Syntax option flags. |
| regex_error | if l does not contain a valid regular expression pattern interpreted according to flags. If regex_error is thrown, the object remains unchanged. |
Definition at line 653 of file regex.h.
References assign().
Referenced by assign().
| flag_type std::basic_regex::flags | ( | ) | const [inline] |
Gets the flags used to construct the regular expression or in the last call to assign().
Definition at line 671 of file regex.h.
Referenced by operator=().
| locale_type std::basic_regex::getloc | ( | ) | const [inline] |
| locale_type std::basic_regex::imbue | ( | locale_type | __loc | ) | [inline] |
| unsigned int std::basic_regex::mark_count | ( | ) | const [inline] |
| basic_regex& std::basic_regex::operator= | ( | const basic_regex & | __rhs | ) | [inline] |
| basic_regex& std::basic_regex::operator= | ( | basic_regex && | __rhs | ) | [inline] |
| basic_regex& std::basic_regex::operator= | ( | const _Ch_type * | __p | ) | [inline] |
| basic_regex& std::basic_regex::operator= | ( | const basic_string< _Ch_type, _Ch_typeraits, _Allocator > & | __s | ) | [inline] |
| void std::basic_regex::swap | ( | basic_regex & | __rhs | ) | [inline] |
Swaps the contents of two regular expression objects.
| rhs | Another regular expression object. |
Definition at line 699 of file regex.h.
Referenced by assign(), and std::swap().