首页  >  文章  >  后端开发  >  为什么对于正则表达式搜索中的多个匹配项,“std::match_results::size”返回 1 而不是 3?

为什么对于正则表达式搜索中的多个匹配项,“std::match_results::size”返回 1 而不是 3?

Patricia Arquette
Patricia Arquette原创
2024-11-04 20:48:02877浏览

Why does `std::match_results::size` return 1 instead of 3 for multiple matches in a regex search?

std::match_results::size

在 C 中,std::match_results::size 是一个返回匹配数量的函数组加上正则表达式搜索中的整体匹配。需要注意的是,它不会返回找到的匹配总数。

在您提供的示例中:

<code class="cpp">#include <iostream>
#include <string>
#include <regex>

int main() {
    std::string haystack("abcdefabcghiabc");
    std::regex needle("abc");
    std::smatch matches;
    std::regex_search(haystack, matches, needle);
    std::cout << matches.size() << std::endl;
}</code>

您期望 matches.size() 返回 3,但相反,您得到 1。这是因为 regex_search 仅返回一个匹配项,而 size() 返回捕获组的数量加上整个匹配值。在这种情况下,没有捕获组,因此大小为 1(整个匹配本身)。

要获取多个匹配,您可以使用 std::regex_iterator,这在以下替代代码中进行了演示:

<code class="cpp">std::regex rgx1("abc");
int i = 0;
smatch smtch;
while (regex_search(str, smtch, rgx1)) {
        std::cout << i << ": " << smtch[0] << std::endl;
        i += 1;
        str = smtch.suffix().str();
}</code>

此代码会破坏输入字符串,因此这里是使用 std::sregex_iterator 的另一种替代方法:

<code class="cpp">std::regex r("ab(c)");
std::string s = "abcdefabcghiabc";
for(std::sregex_iterator i = std::sregex_iterator(s.begin(), s.end(), r);
                             i != std::sregex_iterator();
                             ++i)
{
        std::smatch m = *i;
        std::cout << "Match value: " << m.str() << " at Position " << m.position() << '\n';
        std::cout << "    Capture: " << m[1].str() << " at Position " << m.position(1) << '\n';
}</code>

这种基于迭代器的方法保留原始字符串,同时允许您迭代通过比赛。

以上是为什么对于正则表达式搜索中的多个匹配项,“std::match_results::size”返回 1 而不是 3?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn