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