【POSIX】使用regex进行正则匹配

铁佛  金牌会员 | 2024-6-21 13:36:22 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 987|帖子 987|积分 2961

正则表达式是很关键的一个工具,各种编程语言中均通用,务必把握
给出Linux中man page给出的一个示例:
  1. #include <stdint.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. #include <regex.h>
  5. #define ARRAY_SIZE(arr) (sizeof((arr)) / sizeof((arr)[0]))
  6. static const char *const str =
  7.     "1) John Driverhacker;\n2) John Doe;\n3) John Foo;\n";
  8. static const char *const re = "John.*o";
  9. int main(void)
  10. {
  11.     static const char *s = str;
  12.     regex_t regex;
  13.     regmatch_t pmatch[1];
  14.     regoff_t off, len;
  15.     if (regcomp(&regex, re, REG_NEWLINE))
  16.         exit(EXIT_FAILURE);
  17.     printf("String = "%s"\n", str);
  18.     printf("Matches:\n");
  19.     for (unsigned int i = 0;; i++)
  20.     {
  21.         if (regexec(&regex, s, ARRAY_SIZE(pmatch), pmatch, 0))
  22.             break;
  23.         off = pmatch[0].rm_so + (s - str);
  24.         len = pmatch[0].rm_eo - pmatch[0].rm_so;
  25.         printf("#%zu:\n", i);
  26.         printf("offset = %jd; length = %jd\n", (intmax_t)off,
  27.                (intmax_t)len);
  28.         printf("substring = "%.*s"\n", len, s + pmatch[0].rm_so);
  29.         s += pmatch[0].rm_eo;
  30.     }
  31.     exit(EXIT_SUCCESS);
  32. }
复制代码
实行:
  1. ./demo           
  2. String = "1) John Driverhacker;
  3. 2) John Doe;
  4. 3) John Foo;
  5. "
  6. Matches:
  7. #0:
  8. offset = 25; length = 7
  9. substring = "John Do"
  10. #1:
  11. offset = 38; length = 8
  12. substring = "John Foo"
复制代码
然后依样画葫芦,也写一个动态天生正则匹配的工具
  1. #include <iostream>
  2. #include <string.h>
  3. #include <unistd.h>
  4. #include <regex.h>
  5. int main(int argc, char *argv[])
  6. {
  7.     if (argc != 2)
  8.     {
  9.         std::cerr << "./regexec <reg-str>" << std::endl;
  10.         return 0;
  11.     }
  12.     std::cout << "reg pattern: " << argv[1] << std::endl;
  13.     char msgbuf[128];
  14.     regex_t r{};
  15.     int err = regcomp(&r, argv[1], REG_NEWLINE);
  16.     if (err != 0)
  17.     {
  18.         std::cout << "err code: " << err << std::endl;
  19.         size_t s = regerror(err, &r, msgbuf, sizeof(msgbuf));
  20.         write(STDERR_FILENO, msgbuf, s);
  21.         exit(-1);
  22.     }
  23.     std::string str;
  24.     for (;;)
  25.     {
  26.         std::cout << "请输入待匹配的字符串: ";
  27.         std::getline(std::cin, str);
  28.         std::cout << "输入是: " << str.c_str() << std::endl;
  29.         int want_len = 1;
  30.         regmatch_t want[1];
  31.         err = regexec(&r, str.c_str(), want_len, want, 0);
  32.         if (err == 0)
  33.         {
  34.             printf("The string matches the regular expression.\n");
  35.         }
  36.         else if (err == REG_NOMATCH)
  37.         {
  38.             printf("The string does not match the regular expression.\n");
  39.         }
  40.         else
  41.         {
  42.             regerror(err, &r, msgbuf, sizeof(msgbuf));
  43.             fprintf(stderr, "Regex matching failed: %s\n", msgbuf);
  44.             exit(-1);
  45.         }
  46.     }
  47.     regfree(&r);
  48.     return 0;
  49. }
复制代码
实行:
  1. ./regexec "[0-9].*"
  2. reg pattern: [0-9].*
  3. 请输入待匹配的字符串: 123
  4. 输入是: 123
  5. The string matches the regular expression.
  6. 请输入待匹配的字符串: 12
  7. 输入是: 12
  8. The string matches the regular expression.
  9. 请输入待匹配的字符串: addd
  10. 输入是: addd
  11. The string does not match the regular expression.
  12. 请输入待匹配的字符串: 12sfsfs
  13. 输入是: 12sfsfs
  14. The string matches the regular expression.
  15. 请输入待匹配的字符串: sdfs
  16. 输入是: sdfs
  17. The string does not match the regular expression.
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

铁佛

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表