May 2013
Intermediate to advanced
1376 pages
47h 26m
English
If the code and the comments disagree, then both are probably wrong.
– Norm Schryer
• regex
• Regular Expression Functions
regex_match(); regex_search(); regex_replace()
• Regular Expression Iterators
regex_iterator; regex_token_iterator
• Advice
In <regex>, the standard library provides support for regular expressions:
• regex_match(): Match a regular expression against a string (of known size).
• regex_search(): Search for a string that matches a regular expression in an (arbitrarily long) stream of data.
• regex_replace(): Search for strings that match a regular expression in an (arbitrarily long) stream ...