Regex 썸네일형 리스트형 tr1::regex (boost::regex) 샘플코드 #include #include #include #include #include #include #include #include #include using namespace std; typedef vector MatchList; typedef MatchList::iterator MatchListIter; bool MatchFunc(const boost::smatch &m, MatchList *p) { p->push_back(m.str()); return true; } void RegExTest(const char *pFileName) { ifstream fin(pFileName); if (!fin) { cout 더보기 이전 1 다음