I read through n1429 with the section
The algorithms regex_match and regex_search both support a feature not commonly seen in regular expression libraries: a partial match. When the flag
std::regex_constants::match_partial
is set in the flags passed to the algorithm, then a result of true may be returned if one or more characters were matched, and the state machine then reached the end of the character sequence while there were still states to be matched. [...]
But I can not find any trace of that feature in the FCD, nor in the headers of the current gcc-4.7.0. I also looked for a revision of n1429 but again did not find anything. I know that the basis for the proposal had it's origins in Boost and made it into TR1. But I do not know when match_partial
disappeared.
Is the partial match feature still in C++11? Maybe with a different name?