1

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

Vicky
  • 1,657
  • 6
  • 23
  • 33

2 Answers2

1

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

Community
  • 1
  • 1
Dario
  • 48,658
  • 8
  • 97
  • 130
1

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
  • 23,169
  • 18
  • 105
  • 180