11 Aug
2005
11 Aug
'05
3:35 p.m.
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.