std::match_results::size()는 무엇을 반환합니까?
C 11에서 std::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; }</code>
이 코드는 문자열 "abcdefabcghiabc"의 하위 문자열 "abc"를 사용하고 일치 개체에 일치 결과를 저장합니다. 놀랍게도 match.size()를 호출하면 3(예상 일치 항목 수) 대신 1이 반환됩니다.
이 동작은 regex_search()가 일치 항목 하나만 반환하고 size()에는 전체 일치 항목이 모두 포함된다는 사실로 설명됩니다. 일치 및 모든 캡처 그룹. 이 경우 캡처 그룹이 없으므로 size()는 1을 반환합니다(전체 일치만).
여러 일치 항목 찾기
여러 일치 항목을 찾아 계산하려면, std::sregex_iterator 또는 std::wsregex_iterator(와이드 문자열의 경우)를 사용하십시오. 다음은 std::sregex_iterator:
<code class="cpp">#include <iostream> #include <string> #include <regex> using namespace std; int main() { std::regex r("abc"); std::string s = "abcdefabcghiabc"; int count = 0; for (std::sregex_iterator i = std::sregex_iterator(s.begin(), s.end(), r); i != std::sregex_iterator(); ++i) { count++; } cout << "Number of matches: " << count << endl; }</code>
이 코드는 문자열에서 "abc"와 일치하는 모든 항목을 반복하고 개수를 셉니다.
캡처 그룹
정규 표현식에 캡처 그룹(괄호로 묶인 하위 표현식)이 포함된 경우 일치 결과의 크기에는 캡처 그룹도 포함됩니다. 예를 들어 "abc(def)"와 일치하는 정규식이 있고 입력 문자열에 "abcdef"가 포함되어 있는 경우 일치 결과의 크기는 2(전체 일치 및 캡처 그룹 "def")가 됩니다.
위 내용은 std::match_results::size()는 C에서 몇 개의 항목을 반환합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!