정규식 표현

#include <iostream>

#include <string>

#include <boost/regex.hpp>  // Boost.Regex lib

#include <fstream>


using namespace std;

const int BUFSIZE = 10000;


int main(int argc, char ** argv ) 

{

string s, sre;

boost::regex re;

boost::cmatch matches;


cout << "Expression : ";

cin >> sre;


cout <<"str: ";

cin >> s;


try

{

re = sre;

}

catch(boost::regex_error& e)

{

cout << sre << "is not a valid regular expression : " << e.what() << endl;

// continue;

}

if(boost::regex_match(s.c_str(), matches, re))

{

for(int i = 0; i<matches.size(); i++)

{

string match(matches[i].first, matches[i].second);

cout <<"\tmatches[" <<i << "] \ " <<match <<endl;

}

}

else

{

cout << "The regexp \"" << re << "\" does not mach \"" << s <<"\"" <<endl;

}

}


'c/c++' 카테고리의 다른 글

c++ 관리자 권한으로 프로그램 실행시키는 방법  (0) 2014.03.03
스레드 생성  (0) 2013.04.05
스레드 생성  (0) 2013.03.26
MMF(Memory Mapping File) & Shared Memory  (0) 2013.03.26
JSON 사용하기  (0) 2013.03.13