命名空间
变体
操作

std::regex_error

来自 cppreference.com
< cpp‎ | regex
定义在头文件 <regex>
class regex_error;
(自 C++11 起)

定义了用于报告正则表达式库中错误的异常对象类型。

cpp/error/exceptioncpp/error/runtime errorstd-regex error-inheritance.svg

继承关系图

内容

[编辑] 成员函数

构造一个 regex_error 对象
(公共成员函数) [编辑]
替换 regex_error 对象
(公共成员函数) [编辑]
获取 regex_errorstd::regex_constants::error_type
(公共成员函数) [编辑]

std::runtime_error 继承


std::exception 继承

成员函数

销毁异常对象
(std::exception 的虚拟公共成员函数) [编辑]
[虚拟]
返回解释性字符串
(std::exception 的虚拟公共成员函数) [编辑]

[编辑] 示例

#include <iostream>
#include <regex>
 
int main()
{
    try
    {
        std::regex re("[a-b][a");
    }
    catch (const std::regex_error& e)
    {
        std::cout << "regex_error caught: " << e.what() << '\n';
        if (e.code() == std::regex_constants::error_brack)
            std::cout << "The code was error_brack\n";
    }
}

可能输出

regex_error caught: The expression contained mismatched [ and ].
The code was error_brack