Get the rendered text from HTML (Delphi)
- by Daisetsu
I have some HTML and I need to extract the actual written text from the page.
So far I have tried using a web browser and rendering the page, then going to the document property and grabbing the text. This works, but only where the browser is supported (IE com object). The problem is I want this to be able to run under wine also, so I need a solution that doesn't use IE COM.
There must be a programatic way to do this that is reasonable.