How can I print the source of a webpage, specified in curl_easy_setopt, without html tags? So, printing only the text in the source?
+3
A:
Curl/libcurl is just for fetching the HTML page. To extract information from it, you need other tools.
The most general solution is to use a HTML parser. A good one in C is HTMLparser from libxml.
Eli Bendersky
2010-01-29 13:35:24
Ok, thanks for the advice.
En_t8
2010-01-29 14:16:33