I have a string test
<td><a href="4.%20Functions,%20scope.ppt">4. Functions, scope.ppt</a></td>
I want to find <a href="4.%20Functions,%20scope.ppt"> (as a substring)
As a search with Dr.Google: regex e ("<a href=.*?>"); cmatch =cm; to mark substring that I want to find.
How I can do next?
Am I right to use regex_match(htmlString, cm, e); with htmlString as wchar_t*