Can anyone recommend a C or Objective-C library for HTML parsing? It needs to handle messy HTML code that won’t quite validate.
Does such a library exist, or am I better off just trying to use regular expressions?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Looks like
libxml2.2comes in the SDK, andlibxml/HTMLparser.hclaims the following:That sounds like what I need, so I’m probably going to use that.