std::basic_regex<CharT,Traits>::assign
来自 cppreference.com
< cpp | regex | basic regex
basic_regex& assign( const basic_regex& other ); |
(1) | (自 C++11 起) |
basic_regex& assign( basic_regex&& other ) noexcept; |
(2) | (自 C++11 起) |
basic_regex& assign( const CharT* s, flag_type f = std::regex_constants::ECMAScript ); |
(3) | (自 C++11 起) |
basic_regex& assign( const CharT* ptr, std::size_t count, flag_type f = std::regex_constants::ECMAScript ); |
(4) | (自 C++11 起) |
template< class ST, class SA > basic_regex& assign( const std::basic_string<CharT,ST,SA>& str, |
(5) | (自 C++11 起) |
template< class InputIt > basic_regex& assign( InputIt first, InputIt last, |
(6) | (自 C++11 起) |
basic_regex& assign( std::initializer_list<CharT> ilist, flag_type f = std::regex_constants::ECMAScript ); |
(7) | (自 C++11 起) |
将内容分配给正则表达式。
2) 使用移动语义分配 other 的内容。 flags() 和 mark_count() 等效于分配前 other.flags() 和 other.mark_count() 的值。调用后,other 处于有效但未指定的状态。
3) 分配由 s 指向的以空字符结尾的字符串。
4) 分配由 s 指向的 count 个字符的序列。
5) 分配字符串 str。
6) 分配范围
[
first,
last)
中的字符。7) 分配初始化列表 ilist 中的字符。
内容 |
[编辑] 参数
other | - | 要分配的另一个正则表达式 |
s | - | 指向要分配的字符序列的指针 |
str | - | 要分配的字符串 |
first, last | - | 要分配的字符范围 |
ilist | - | 包含要分配的字符的初始化列表 |
类型要求 | ||
-InputIt 必须满足 LegacyInputIterator 的要求。 |
[编辑] 返回值
*this
[编辑] 异常
1) 可能抛出实现定义的异常。
3-7) 如果提供的正则表达式无效,则会抛出 std::regex_error。在这种情况下,对象不会被修改。
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参阅
分配内容 (公共成员函数) |