6 Oct
2006
6 Oct
'06
8:42 a.m.
boost@larroy.com wrote:
Hi, I don't get why I'm getting diferent results with this regexp in perl and in boost::regex, is there something I'm doing wrong?
It looks like you are trying to match a subset of the string: for that you need to use regex_search. regex_match will only succeed if it matches *all* of the text. John.