C/C++ 正则表达式 主要函数解析

1.int regcomp(regex_t *compiled, const char *pattern, int cflags)

    这个函数把指定的规则表达式pattern编译成一种特定的数据格式compiled,这样可以使匹配更有效。函数regexec会使用这个数据在目标文本串中进行模式匹配。执行成功返回0。 regex_t:是一个结构体数据类型,用来存放编译后的规则表达式,它的成员re_nsub用来存储规则表达式中的子规则表达式的个数,子规则表达式就是用圆括号包起来的部分表达式。 pattern:是指向我们写好的规则表达式的指针。 cflags:有如下4个值或者是它们或运算(|)后的值: REG_EXTENDED 以功能更加强大的扩展规则表达式的方式进行匹配。 REG_ICASE 匹配字母时忽略大小写。 REG_NOSUB 不用存储匹配后的结果。 REG_NEWLINE 识别换行符,这样'$'就可以从行尾开始匹配,'^'就可以从行的开头开始匹配。

2. int regexec (regex_t *compiled, char *string, size_t nmatch, regmatch_t matchptr [], int eflags)

    当我们编译好规则表达式后,就可以用regexec 匹配我们的目标文本串了,如果在编译规则表达式的时候没有指定cflags的参数为REG_NEWLINE,则默认情况下是忽略换行符的,也就是把整个文本串当作一个字符串处理。执行成功返回0。 regmatch_t 是一个结构体数据类型,成员rm_so 存放匹配文本串在目标串中的开始位置,rm_eo 存放结束位置。通常我们以数组的形式定义一组这样的结构。因为往往我们的规则表达式中还包含子规则表达式。数组0单元存放主规则表达式位置,后边的单元依次存放子规则表达式位置。 compiled 是已经用regcomp函数编译好的规则表达式。 string 是目标文本串。 nmatch 是regmatch_t结构体数组的长度。 matchptr regmatch_t类型的结构体数组,存放匹配文本串的位置信息。 eflags 有两个值 REG_NOTBOL 按我的理解是如果指定了这个值,那么'^'就不会从我们的目标串开始匹配。总之我到现在还不是很明白这个参数的意义,原文如下: If this bit is set, then the beginning-of-line operator doesn't match the beginning of the string (presumably because it's not the beginning of a line).If not set, then the beginning-of-line operator does match the beginning of the string. REG_NOTEOL 和上边那个作用差不多,不过这个指定结束end of line。

3. void regfree (regex_t *compiled)

    当我们使用完编译好的规则表达式后,或者要重新编译其他规则表达式的时候,我们可以用这个函数清空compiled指向的regex_t结构体的内容,请记住,如果是重新编译的话,一定要先清空regex_t结构体。

4. size_t regerror (int errcode, regex_t *compiled, char *buffer, size_t length)

    当执行regcomp 或者regexec 产生错误的时候,就可以调用这个函数而返回一个包含错误信息的字符串。 errcode 是由regcomp 和 regexec 函数返回的错误代号。 compiled 是已经用regcomp函数编译好的规则表达式,这个值可以为NULL。 buffer 指向用来存放错误信息的字符串的内存空间。 length 指明buffer的长度,如果这个错误信息的长度大于这个值,则regerror 函数会自动截断超出的字符串,但他仍然会返回完整的字符串的长度。所以我们可以用如下的方法先得到错误字符串的长度。 size_t length = regerror (errcode, compiled, NULL, 0);

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
使用C++正则表达式库regex解析JSON字符串可以分为以下几个步骤: 1. 定义正则表达式:根据JSON字符串的语法规则,定义相应的正则表达式。例如,对于一个JSON对象,可以定义如下的正则表达式: ```c++ std::regex object_regex(R"(\{\s*("(?:\\.|[^"\\])*"\s*:\s*(?:true|false|null|\d+|"(?:\\.|[^"\\])*"(?=\s*:))\s*(?:,\s*"(?:\\.|[^"\\])*"\s*:\s*(?:true|false|null|\d+|"(?:\\.|[^"\\])*"(?=\s*:))\s*)*\})"); ``` 2. 匹配JSON字符串:使用std::regex_match函数对JSON字符串进行匹配,如果匹配成功,则表示JSON字符串符合语法规则,否则不符合。 ```c++ std::smatch match; if (std::regex_match(json_str, match, object_regex)) { // JSON字符串匹配成功 } else { // JSON字符串匹配失败 } ``` 3. 解析JSON字符串:根据匹配结果提取JSON对象的各个属性和值,并将其存储在一个数据结构中。可以使用std::regex_search函数和std::regex_iterator迭代器来实现。 ```c++ std::map<std::string, std::string> json_map; std::regex key_value_regex(R"("(\w+)":\s*"([^"]*)")"); std::string::const_iterator search_start(json_str.cbegin()); while (std::regex_search(search_start, json_str.cend(), match, key_value_regex)) { json_map[match[1].str()] = match[2].str(); search_start = match.suffix().first; } ``` 上述代码将JSON字符串解析成一个std::map<std::string, std::string>对象,其中键为JSON对象的属性名,值为属性对应的值。 将上述步骤封装成一个函数,可以方便地解析任意格式的JSON字符串,示例代码如下: ```c++ #include <iostream> #include <regex> #include <map> std::map<std::string, std::string> parse_json(const std::string& json_str) { std::map<std::string, std::string> json_map; // 匹配JSON对象 std::regex object_regex(R"(\{\s*("(?:\\.|[^"\\])*"\s*:\s*(?:true|false|null|\d+|"(?:\\.|[^"\\])*"(?=\s*:))\s*(?:,\s*"(?:\\.|[^"\\])*"\s*:\s*(?:true|false|null|\d+|"(?:\\.|[^"\\])*"(?=\s*:))\s*)*\})"); std::smatch match; if (!std::regex_match(json_str, match, object_regex)) { throw std::invalid_argument("Invalid JSON string"); } // 解析JSON对象 std::regex key_value_regex(R"("(\w+)":\s*"([^"]*)")"); std::string::const_iterator search_start(json_str.cbegin()); while (std::regex_search(search_start, json_str.cend(), match, key_value_regex)) { json_map[match[1].str()] = match[2].str(); search_start = match.suffix().first; } return json_map; } int main() { std::string json_str = R"({"name": "Tom", "age": 18})"; try { std::map<std::string, std::string> json_map = parse_json(json_str); for (const auto& [key, value] : json_map) { std::cout << key << ": " << value << std::endl; } } catch (const std::exception& e) { std::cerr << e.what() << std::endl; } return 0; } ``` 输出结果为: ``` age: 18 name: Tom ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值