C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- std::sub_match
- std::match_results
- std::basic_regex
- operator==,!=(std::match_results)
- std::swap(std::match_results)
- std::match_results<BidirIt,Alloc>::empty
- 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++ 关键词
std::match_results
定义于头文件 <regex>
|
||
template< class BidirIt, |
(1) | (C++11 起) |
namespace pmr { template <class BidirIt> |
(2) | (C++17 起) |
类模板 std::match_results
保有表示正则表达式匹配结果的字符序列汇集。
这是特殊的具分配器容器。它只能默认创建、从std::regex_iterator 获得,或通过 std::regex_search 或 std::regex_match 修改。 std::match_results
保有 std::sub_match ,它们每个都是一对指向匹配的原初字符序列中的迭代器,故若原初字符序列被销毁,或指向它的迭代器因另外的原因非法化,则检验 std::match_results
是未定义行为。
match_result
中所含的首个 sub_match
(下标 0 )始终表示 regex 所做的目标序列内的完整匹配,而后继的 sub_match
表示按顺序对应分隔正则表达式中子表达式的左括号的子表达式匹配
std::match_results
满足具分配器容器 (AllocatorAwareContainer) 与序列容器 (SequenceContainer) 的要求,除了仅支持复制赋值、移动赋值和对常容器定义的操作,还有比较函数的语义异于对容器要求的语义。
类型要求
-BidirIt 必须满足遗留双向迭代器 (LegacyBidirectionalIterator) 的要求。
| ||
-Alloc 必须满足分配器 (Allocator) 的要求。
|
特化
提供几个对常用字符类型的特化:
定义于头文件
<regex> | |
类型 | 定义 |
std::cmatch
|
std::match_results<const char*> |
std::wcmatch
|
std::match_results<const wchar_t*> |
std::smatch
|
std::match_results<std::string::const_iterator> |
std::wsmatch
|
std::match_results<std::wstring::const_iterator> |
std::pmr::cmatch (C++17)
|
std::pmr::match_results<const char*> |
std::pmr::wcmatch (C++17)
|
std::pmr::match_results<const wchar_t*> |
std::pmr::smatch (C++17)
|
std::pmr::match_results<std::string::const_iterator> |
std::pmr::wsmatch (C++17)
|
std::pmr::match_results<std::wstring::const_iterator> |
成员类型
成员类型 | 定义 |
allocator_type
|
Allocator |
value_type
|
std::sub_match<BidirIt> |
const_reference
|
const value_type& |
reference
|
value_type& |
const_iterator
|
实现定义(取决于底层容器) |
iterator
|
const_iterator |
difference_type
|
std::iterator_traits<BidirIt>::difference_type |
size_type
|
std::allocator_traits<Alloc>::size_type |
char_type
|
std::iterator_traits<BidirIt>::value_type |
string_type
|
std::basic_string<char_type> |
成员函数
构造对象 (公开成员函数) | |
析构对象 (公开成员函数) | |
赋值内容 (公开成员函数) | |
返回关联的分配器 (公开成员函数) | |
状态 | |
检查结果是否合法 (公开成员函数) | |
大小 | |
检查匹配是否成功 (公开成员函数) | |
返回完全建立的结果状态中的匹配数 (公开成员函数) | |
返回子匹配的最大可能数量 (公开成员函数) | |
元素访问 | |
返回特定子匹配的长度 (公开成员函数) | |
返回特定子匹配首字符的位置 (公开成员函数) | |
返回特定子匹配的字符序列 (公开成员函数) | |
返回指定的子匹配 (公开成员函数) | |
返回目标序列起始和完整匹配起始之间的子序列。 (公开成员函数) | |
返回完整匹配结尾和目标序列结尾之间的子序列 (公开成员函数) | |
迭代器 | |
返回指向子匹配列表起始的迭代器 (公开成员函数) | |
返回指向子匹配列表末尾的迭代器 (公开成员函数) | |
格式 | |
为输出格式化匹配结果 (公开成员函数) | |
修改器 | |
交换内容 (公开成员函数) |
非成员函数
(C++20 中移除) |
以字典序比较两个匹配结果的值 (函数模板) |
特化 std::swap() 算法 (函数模板) |