命名空间
变体
操作

std::regex_constants::error_type

来自 cppreference.com
< cpp‎ | regex
定义在头文件 <regex>
using error_type = /* 实现定义 */;
(1) (自 C++11)
constexpr error_type error_collate =    /* 未指定 */;

constexpr error_type error_ctype =      /* 未指定 */;
constexpr error_type error_escape =     /* 未指定 */;
constexpr error_type error_backref =    /* 未指定 */;
constexpr error_type error_brack =      /* 未指定 */;
constexpr error_type error_paren =      /* 未指定 */;
constexpr error_type error_brace =      /* 未指定 */;
constexpr error_type error_badbrace =   /* 未指定 */;
constexpr error_type error_range =      /* 未指定 */;
constexpr error_type error_space =      /* 未指定 */;
constexpr error_type error_badrepeat =  /* 未指定 */;
constexpr error_type error_complexity = /* 未指定 */;

constexpr error_type error_stack =      /* 未指定 */;
(2) (自 C++11)
(自 C++17 起内联)
1) error_type 是一个类型,用于描述在正则表达式解析过程中可能发生的错误。

内容

[编辑] 常量

名称 说明
error_collate 表达式包含无效的排序元素名称
error_ctype 表达式包含无效的字符类名称
error_escape 表达式包含无效的转义字符或尾随转义
error_backref 表达式包含无效的反向引用
error_brack 表达式包含不匹配的方括号 ('['']')
error_paren 表达式包含不匹配的圆括号 ('('')')
error_brace 表达式包含不匹配的花括号 ('{''}')
error_badbrace 表达式在 {} 表达式中包含无效的范围
error_range 表达式包含无效的字符范围(例如 [b-a])
error_space 没有足够的内存来将表达式转换为有限状态机
error_badrepeat '*', '?', '+''{' 前面没有有效的正则表达式
error_complexity 尝试匹配的复杂度超过了预定义级别
error_stack 没有足够的内存来执行匹配

[编辑] 示例

实现正则表达式检查器

#include <cstddef>
#include <iomanip>
#include <iostream>
#include <regex>
#include <sstream>
#include <string>
 
void regular_expression_checker(const std::string& text,
                                const std::string& regex,
                                const std::regex::flag_type flags)
{
    std::cout << "Text: " << std::quoted(text) << '\n'
              << "Regex: " << std::quoted(regex) << '\n';
 
    try
    {
        const std::regex re{regex, flags};
        const bool matched = std::regex_match(text, re);
 
        std::stringstream out;
        out << (matched ? "MATCH!\n" : "DOES NOT MATCH!\n");
 
        std::smatch m;
        if (std::regex_search(text, m, re); !m.empty())
        {
            out << "prefix = [" << m.prefix().str().data() << "]\n";
 
            for (std::size_t i{}; i != m.size(); ++i)
                out << "  m[" << i << "] = [" << m[i].str().data() << "]\n";
 
            out << "suffix = [" << m.suffix().str().data() << "]\n";
        }
        std::cout << out.str() << '\n';
    }
    catch (std::regex_error& e)
    {
        std::cout << "Error: " << e.what() << ".\n\n";
    }
}
 
int main()
{
    constexpr std::regex::flag_type your_flags
        = std::regex::flag_type{0}
    // Choose one of the supported grammars:
        | std::regex::ECMAScript
    //  | std::regex::basic
    //  | std::regex::extended
    //  | std::regex::awk
    //  | std::regex::grep
    //  | std::regex::egrep
    // Choose any of the next options:
    //  | std::regex::icase
    //  | std::regex::nosubs
    //  | std::regex::optimize
    //  | std::regex::collate
    //  | std::regex::multiline
        ;
 
    const std::string your_text = "Hello regular expressions.";
    const std::string your_regex = R"(([a-zA-Z]+) ([a-z]+) ([a-z]+)\.)";
    regular_expression_checker(your_text, your_regex, your_flags);
 
    regular_expression_checker("Invalid!", R"(((.)(.))", your_flags);
    regular_expression_checker("Invalid!", R"([.)", your_flags);
    regular_expression_checker("Invalid!", R"([.]{})", your_flags);
    regular_expression_checker("Invalid!", R"([1-0])", your_flags);
}

可能的输出

Text: "Hello regular expressions."
Regex: "([a-zA-Z]+) ([a-z]+) ([a-z]+)\\."
MATCH!
prefix = []
  m[0] = [Hello regular expressions.]
  m[1] = [Hello]
  m[2] = [regular]
  m[3] = [expressions]
suffix = []
 
Text: "Invalid!"
Regex: "((.)(.)"
Error: Mismatched '(' and ')' in regular expression.
 
Text: "Invalid!"
Regex: "[."
Error: Unexpected character within '[...]' in regular expression.
 
Text: "Invalid!"
Regex: "[.]{}"
Error: Invalid range in '{}' in regular expression.
 
Text: "Invalid!"
Regex: "[1-0]"
Error: Invalid range in bracket expression..

[编辑] 缺陷报告

以下行为变更缺陷报告已追溯应用于以前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 2053 C++11 常量声明为 static 删除了 static 说明符

[编辑] 另请参见

报告正则表达式库生成的错误
(类) [编辑]