首頁 > 後端開發 > C++ > 為什麼 `std::match_results::size` 不傳回字串中的符合數?

為什麼 `std::match_results::size` 不傳回字串中的符合數?

Barbara Streisand
發布: 2024-11-07 22:16:02
原創
856 人瀏覽過

Why does `std::match_results::size` not return the number of matches in a string?

std::match_results::size 回傳什麼,為什麼它不對應於匹配數?

std C 11 中的 ::match_results::size 函數傳回捕獲組的數量加上整個匹配值的 1。在您提供的程式碼中:

<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;
}
登入後複製

您可能期望輸出為 3,因為字串「abc」在乾草堆中出現了 3 次。然而,輸出實際上是 1。這是因為 regex_search 只傳回一個符合項,而 size() 會傳回捕獲組的數量加上整個符合值。

在這種情況下,沒有捕獲組,所以size() 為整個匹配值傳回 1。如果你想在haystack 中尋找「abc」的所有符合項,可以使用多個參數的std::regex_search 函數:

<code class="cpp">int main() {
    std::string haystack("abcdefabcghiabc");
    std::regex needle("abc");
    std::vector<std::smatch> matches;
    std::regex_search(haystack, needle, matches, std::regex_constants::match_continuous);
    std::cout << matches.size() << std::endl;
}
登入後複製

此程式碼將在haystack 中搜尋「abc」的所有匹配項並將它們儲存在matches 向量中。然後 size() 函數將傳回找到的匹配項數,在本例中為 3。

替代解決方案

還有其他方法可以在一個字串。一種方法是使用std::sregex_iterator:

<code class="cpp">int main() {
    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';
    }
    return 0;
}
登入後複製

此程式碼將傳回:

Match value: abc at Position 0
    Capture: c at Position 2
Match value: abc at Position 6
    Capture: c at Position 8
Match value: abc at Position 12
    Capture: c at Position 14
登入後複製

另一種方法是使用std::regex_match 函數:

<code class="cpp">int main() {
    std::regex r("abc");
    std::string s = "abcdefabcghiabc";
    std::vector<std::string> matches;
    std::smatch match;
    while (std::regex_search(s, match, r)) {
        matches.emplace_back(match[0]);
        s = match.suffix().str();
    }
    std::cout << matches.size() << std::endl;
}</code>
登入後複製
另一種方法是使用std::regex_match 函數:

另一種方法是使用std::regex_match 函數:另一種方法是使用std::regex_match 函數:此程式碼也會回傳3。

以上是為什麼 `std::match_results::size` 不傳回字串中的符合數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板