I'm looking for a way if you know the location where to read the text for example say, under a particular category, how would you connect to a website and search & read the text from it? what steps do i need to follow to learn about that?
A:
You're probably looking for a web crawler.
Here's an example of a simple crawler written in C++.
Moreover, you might want to have a look to wget, a software to retrieve files via HTTP, HTTPS and FTP.
Roberto Aloi
2010-03-04 19:45:51
That crawler is quite basic =D
Hassan Syed
2010-03-04 20:04:07
Chilkat isn't free though.
Xorlev
2010-03-04 23:56:19
A:
if you are looking at a specific web-page, you could try retrieving the page and parsing it to get to the exact location you want. e.g. specific div, etc.
since you are using c++, you could try reading up on using libcurl to retrieve the information you need from the URL.
maranas
2010-03-04 19:46:18