I read the n1429 section
The regex_match and regex_search algorithms support a function that is not commonly seen in regular expression libraries: partial matching . When the std::regex_constants::match_partial
set in the flags passed to the algorithm, then true can be returned if one or more characters were matched and the state machine then reached the end of the character while the states are still saved. [...]
But I can not find any traces of this function in the FCD or in the headers of the current gcc-4.7.0. I also searched for revision n1429, but found nothing again. I know that the proposal was based on the fact that it arose in Boost and turned it into TR1. But I do not know when match_partial
disappeared.
Is a partial match function still in C ++ 11? Maybe with a different name?
source share