> I need to make an case insensitive match using regex_match()
> algorithm. How do I specify that?
You do it when you construct the regex, so for example:
boost::regex re("abc", boost::regex::perl | boost::regex::icase); // a case
insensitive Perl style expression.
John.