1

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

Vicky
  • 1,589
  • 5
  • 22
  • 32

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
  • 47,396
  • 7
  • 93
  • 126
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
  • 22,159
  • 16
  • 101
  • 174