From: John Maddock (john_at_[hidden])
Date: 2004-12-27 06:12:24


> boost::regex re("x", boost::regex_constants::icase);

That should be:

boost::regex re("x", boost::regex::perl|boost::regex_constants::icase);

and then your example should work OK.

John.