Reputation: 83
I'm trying to parse some HTML with QT / C++. However, I don't want to show any rendered HTML page. Is it possible? How?
Upvotes: 2
Views: 1332
Reputation: 176
In Qt > 4.6, you can use the QWebElement
as described in this StackOverflow answer:
https://stackoverflow.com/questions/489522/library-recommendation-c-html-parser
Upvotes: 1