命名空间
变体
操作

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,

                     flag_type f = std::regex_constants::ECMAScript );
(5) (自 C++11 起)
template< class InputIt >

basic_regex& assign( InputIt first, InputIt last,

                     flag_type f = std::regex_constants::ECMAScript );
(6) (自 C++11 起)
basic_regex& assign( std::initializer_list<CharT> ilist,
                     flag_type f = std::regex_constants::ECMAScript );
(7) (自 C++11 起)

将内容分配给正则表达式。

1) 分配 other 的内容。 flags()mark_count() 等效于调用后 other.flags()other.mark_count() 的值。
2) 使用移动语义分配 other 的内容。 flags()mark_count() 等效于分配前 other.flags()other.mark_count() 的值。调用后,other 处于有效但未指定的状态。
3-7) 将一系列字符分配给正则表达式。语法标志设置为 fmark_count() 返回调用后结果子表达式中标记的子表达式的数量。
3) 分配由 s 指向的以空字符结尾的字符串。
4) 分配由 s 指向的 count 个字符的序列。
5) 分配字符串 str
6) 分配范围 [firstlast) 中的字符。
7) 分配初始化列表 ilist 中的字符。

内容

[编辑] 参数

other - 要分配的另一个正则表达式
s - 指向要分配的字符序列的指针
str - 要分配的字符串
first, last - 要分配的字符范围
ilist - 包含要分配的字符的初始化列表
类型要求
-
InputIt 必须满足 LegacyInputIterator 的要求。

[编辑] 返回值

*this

[编辑] 异常

1) 可能抛出实现定义的异常。
3-7) 如果提供的正则表达式无效,则会抛出 std::regex_error。在这种情况下,对象不会被修改。

[编辑] 示例

[编辑] 另请参阅

分配内容
(公共成员函数) [编辑]