C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- std::basic_regex
- std::basic_regex<CharT,Traits>::basic_regex
- std::basic_regex<CharT,Traits>::~basic_regex
- std::basic_regex<CharT,Traits>::operator=
- std::basic_regex<CharT,Traits>::assign
- std::basic_regex<CharT,Traits>::mark_count
- std::basic_regex<CharT,Traits>::flags
- std::basic_regex<CharT,Traits>::getloc
- std::basic_regex<CharT,Traits>::imbue
- std::basic_regex<CharT,Traits>::swap
- std::basic_regex 常量
- std::swap(std::basic_regex)
- std::basic_regex 的推导指引
- std::sub_match
- std::match_results
- std::regex_search
- std::regex_replace
- std::regex_iterator
- std::regex_match
- std::regex_token_iterator
- std::regex_error
- std::regex_traits
- std::regex_constants::syntax_option_type
- std::regex_constants::match_flag_type
- std::regex_constants::error_type
- 改 ECMAScript 正则表达式文法
- 注释
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >正则表达式库 >std::basic_regex > std::basic_regex<CharT,Traits>::assign
std::basic_regex<CharT,Traits>::assign
basic_regex& assign( const basic_regex& other ); |
(1) | (C++11 起) |
basic_regex& assign( basic_regex&& that ) 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, 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) 赋值 string
str
。6) 赋值范围
[first, last)
中的字符。7) 赋值 initializer_list
ilist
中的字符。参数
other | - | 要赋值的另一正则表达式 |
s | - | 指向要赋值的字符序列的指针 |
str | - | 要赋值的 string |
first, last | - | 要赋值的字符范围 |
ilist | - | 含要赋值的字符的 initializer_list |
类型要求 | ||
-InputIt 必须满足遗留输入迭代器 (LegacyInputIterator) 的要求。
|
返回值
*this
异常
1) (无)
3-7) 若提供的正则表达式非法则为 std::regex_error 。该情况下不修改对象。
示例
本节未完成 原因:暂无示例 |
参阅
赋值内容 (公开成员函数) |