views:

79

answers:

2

Is there a library to parse a HTML response in in C++ .net?

+1  A: 

You can use any .NET-library in C++/CLI. So take a look at these two threads (1; 2)

Dario
+1  A: 

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.

Tamás Szelei