如何使用正则表达式从c ++字符串中提取字符串

时间:2011-05-04 00:34:13

标签: c++ regex string

我正在使用正则表达式使用#include <regex.h>如果我有一个字符串s,我如何使用正则表达式搜索模式p?

2 个答案:

答案 0 :(得分:4)

#include <regex.h>
#include <iostream>
#include <string>

std::string
match(const char *string, char *pattern)
{

// Adapted from:
   http://pubs.opengroup.org/onlinepubs/009695399/functions/regcomp.html

    int    status;
    regex_t    re;
    regmatch_t rm;


    if (regcomp(&re, pattern, REG_EXTENDED) != 0) {
        return "Bad pattern";
    }
    status = regexec(&re, string, 1, &rm, 0);
    regfree(&re);
    if (status != 0) {
        return "No Match";
    }
    return std::string(string+rm.rm_so, string+rm.rm_eo);
}

int main(int ac, char **av) {
    // e.g. usage: ./program abcdefg 'c.*f'
    std::cout << match(av[1], av[2]) << "\n";
}

答案 1 :(得分:1)

检查http://msdn.microsoft.com/en-us/library/bb982821.aspx,具有正则表达式的详细使用模式。来自MS vc blog。

      const regex r("[1-9]\\d*x[1-9]\\d*");

      for (string s; getline(cin, s); ) {
               cout << (regex_match(s, r) ? "Yes" : "No") << endl;
      }