docs:programming:cpp:boost:regex_example

This is an old revision of the document!


regex example

#include <string>
#include <iostream>
#include <boost/regex.hpp>
 
int main(int argc, char* argv[]){
 
	std::string input;
	if(argc > 1){
		input = argv[1];
	}else{
		std::cin >> input;
	}
 
	// note that an escape slash \ needs escaped itself
	static const boost::regex email("^([^@]+)@([^@]+)\\.([^.]+)$");
	if( regex_match(input, email) ){
		std::cout << "Matched OK" << std::endl;
	}else{
		std::cout << "No match" << std::endl;
	}
 
	return 0;
}

* this command was specific to a particular boost version and my configuration; the static version of the regex library was used

c++ -I/usr/local/include/boost-1_37/ -o boostregex boostregex.cpp /usr/local/lib/libboost_regex-xgcc40-mt.a
  • docs/programming/cpp/boost/regex_example.1234416497.txt.gz
  • Last modified: 2009/02/11 22:28
  • by billh