命名空间
变体
操作

std::match_results

来自 cppreference.com
< cpp‎ | regex
在头文件 <regex> 中定义
template<

    class BidirIt,
    class Alloc = std::allocator<std::sub_match<BidirIt>>

> class match_results;
(1) (自 C++11 起)
namespace pmr {

    template <class BidirIt>
    using match_results = std::match_results<BidirIt,
                              std::pmr::polymorphic_allocator<
                                  std::sub_match<BidirIt>>>;

}
(2) (自 C++17 起)

类模板 std::match_results 包含一组字符序列,表示正则表达式匹配的结果。

这是一个专门的分配器感知容器。它只能默认创建,从 std::regex_iterator 获取,或者通过 std::regex_searchstd::regex_match 修改。因为 std::match_results 包含 std::sub_matches,每个都是指向被匹配的原始字符序列的迭代器对,如果原始字符序列被销毁或指向它的迭代器因其他原因失效,则检查 std::match_results 是未定义的行为。

第一个 std::sub_match(索引 0)包含在一个 std::match_result 中,总是表示正则表达式在目标序列中进行的完整匹配,后续的 std::sub_matches 表示子表达式匹配,按顺序对应于正则表达式中界定子表达式的左括号。

std::match_results 满足 AllocatorAwareContainerSequenceContainer 的要求,除了只支持复制赋值、移动赋值和为常量容器定义的操作,并且比较函数的语义与容器要求的语义不同。

内容

[编辑] 类型要求

-
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 分配器
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 算法
(函数模板) [编辑]