Vicky
Vicky

Reputation: 1687

c++ .net HTML parser

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

Upvotes: 1

Views: 554

Answers (2)

Tamás Szelei
Tamás Szelei

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

Dario
Dario

Reputation: 49228

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

Upvotes: 1

Related Questions