Reputation: 1687
Is there a library to parse a HTML response in in C++ .net?
Upvotes: 1
Views: 554
Reputation: 23971
There is a library called SgmlReader, which creates an XMLdocument from HTML or SGML input, which then you can easily handle. It does handle malformed HTML, too. Don't know if it's C++, but you can surely use it from your code by referencing the assembly.
Upvotes: 1