I have a string containing an HTML page downloaded via WinHttpReadData. The string is a simple char*. I\'ve been trying to figure a way to extract
WinHttpReadData
char*
Maybe you should go for the PCRE C API (Available on PCRE site)
The regex you'll need will be like :
<a.*?href=[""'](?<url>.*?)[""'].*?>(?<name>.*?)</a>
This should map too group <url> and <name> within the group structure.
<url>
<name>