C/C++
regexp.txt
Associated article: Regular Expressions
Tags: C/C++
Published source code accompanying the article by Pete Becker in which he examines how C++ uses regular expressions. 2
The New C++
by Pete Becker
Listing One
#include <regex>
#include <iostream>
using std::tr1::regex; using std::tr1::cmatch;
using std::tr1::regex_search;
using std::cout;
int main()
{ // demonstrate regular expression search
const char *...


