"C++ regex search()"의 두 판 사이의 차이

 
29번째 줄: 29번째 줄:
* https://cplusplus.com/reference/regex/regex_search/
* https://cplusplus.com/reference/regex/regex_search/


[[분류: C++]]
[[분류: C++ 정규표현식]]

2023년 9월 29일 (금) 16:05 기준 최신판

1 개요[ | ]

C++ regex_search()
#include <iostream>
#include <string>
#include <regex>
using namespace std;

int main() {
    string s ("this subject has a submarine as a subsequence");
    regex e ("\\b(sub)([^ ]*)");
    smatch m;
    while (regex_search (s,m,e)) {
        cout << m[0] << " | " << m[1] << " | " << m[2] << endl;
        s = m.suffix().str();
    }
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}