basic_regex& assign( const basic_regex& other ); | (1) | (since C++11) |
basic_regex& assign( basic_regex&& that ) noexcept; | (2) | (since C++11) |
basic_regex& assign( const CharT* s, flag_type f = std::regex_constants::ECMAScript ); | (3) | (since C++11) |
basic_regex& assign( const charT* ptr, size_t count, flag_type f = std::regex_constants::ECMAScript ); | (4) | (since C++11) |
template< class ST, class SA > basic_regex& assign( const std::basic_string<CharT,ST,SA>& str, flag_type f = std::regex_constants::ECMAScript ); | (5) | (since C++11) |
template< class InputIt > basic_regex& assign( InputIt first, InputIt last, flag_type f = std::regex_constants::ECMAScript ); | (6) | (since C++11) |
basic_regex& assign( std::initializer_list<CharT> ilist, flag_type f = std::regex_constants::ECMAScript ); | (7) | (since C++11) |
Assigns the contents to the regular expression.
other
. flags()
and mark_count()
are equivalent to the values of other.flags()
and other.mark_count()
after the call.other
using move semantics. flags()
and mark_count()
are equivalent to the values of other.flags()
and other.mark_count()
before the assignment. After the call, other
is in a valid, but unspecified state.f
. mark_count()
returns the number of marked subexpressions within the resulting subexpression after the call.s
.count
characters, pointed to by s
.str
.[first, last)
.ilist
.other | - | another regular expression to assign |
s | - | pointer to a character sequence to assign |
str | - | string to assign |
first, last | - | the range of characters to assign |
ilist | - | initializer list containing characters to assign |
Type requirements | ||
-InputIt must meet the requirements of LegacyInputIterator. |
*this
.
std::regex_error
if the supplied regular expression is not valid. The object is not modified in that case. assigns the contents (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/regex/basic_regex/assign