Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I want to create a web crawler in C. There are hardly any libraries to support this.
I can use libtidy to convert HTML to XHTML and get the HTML files using libcurl (which has decent documentation).

My problem is parsing the HTML files and getting all the links present in it. I know libxml2 is there but its extremely hard to understand because there is no good documentation for its API.

Should I even do this in C or go with another language like Java ? Or are there any good alternatives to libxml2 ?

share|improve this question
possible duplicate of XML Parser for C – Karthik T Jan 19 at 16:55
1  
You can't rely upon XML compliance when crawling the web. So XML parsers won't help much – Paolo Jan 19 at 16:56
It might be a dumb question, but can it also parse XHTML ? – Deepankar Bajpeyi Jan 19 at 16:56
show 5 more comments

closed as not constructive by Karthik T, Donal Fellows, pickles, casperOne Jan 20 at 2:01

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 1 down vote accepted

Parsing HTML requires basically just string manipulation.

A regex c library may help (and good knowledge of regex of course).

As for the second part of the question I woudn't choose C for such task because even basic string operations are much complex than many other languages that support them natively.

I would go for a scripting lanuguage such Python, JavaScript, PHP...

Instead of using libcurl you'll invoke curl as a command line tool.

Btw: libcurl documentation is very good (in my opinion).

share|improve this answer
Yes libcurl documentation is really good. I don't want to invoke curl from system() because it will invoke another shell process which I do not want. I will look into regex :) Thank you – Deepankar Bajpeyi Jan 19 at 17:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.