首頁 > 後端開發 > C++ > 主體

為什麼對於正規表示式搜尋中的多個符合項,「std::match_results::size」會傳回 1 而不是 3?

Patricia Arquette
發布: 2024-11-04 20:48:02
原創
876 人瀏覽過

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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!