使用谷歌re2库的正则表达式,我还没有找到一种方法来解析结果,在任何地方!

这是一个简短的例子

bool b_matches ;
string s_teststr = " aaaaa flickr bbbb";
RE2 re("(?P<flickr>flickr)|(?P<flixster>flixster)");
assert(re.ok()); // compiled; if not, see re.error();
b_matches = RE2::FullMatch(s_teststr, re);

  b_matches = RE2::FullMatch(s_teststr, re);

// then,
re.NumberOfCapturingGroups() //-> always give me 2

 re.CapturingGroupNames(); //-> give me a map with id -> name (with 2 elements)

re.NamedCapturingGroups() //-> give me a map with name -> id (with 2 elements)

我该怎么做才能知道只有flickr已被匹配?

谢谢,

弗朗切斯科

---经过更多测试后,我还没有找到namedcapture的解决方案,只有这样,我发现可以正常工作的东西才能给我提取的文本,就是这个。
string s_teststr = "aaa  hello. crazy world bbb";
std::string word[margc];
RE2::Arg margv[margc];
RE2::Arg * margs[margc];
int match;
int i;

    for (i = 0; i < margc; i++) {
        margv[i] = &word[i];
        margs[i] = &margv[i];
    }
   string s_rematch = "((?P<a>hello\\.)(.*)(world))|(world)";
  match = RE2::PartialMatchN(s_teststr.c_str(), s_rematch.c_str(), margs, margc);
cout << "found res = " << match << endl;
  for (int i = 0; i < margc; i++) {
        cout << "arg[" << i << "] = " << word[i] << endl;
    }

--------这会给我输出:



用字符串匹配的第二部分进行测试...
string s_rematch = "((?P<a>hello\\.d)(.*)(world))|(world)";

---我得到的输出:



我的问题是名称捕获->一个

最佳答案

您可以传递一个字符串,以在成功时进行填充。例如:

std::string matchedValue;

if (RE2::FullMatch(s_teststr, re, &matchedValue))
{
    if (matchedValue.empty())
    {
        //not flickr
    }
}
else
{
    // matchedValue.empty() == true
}

10-08 11:51