I have an HTML table (well, I did not do this, but I use it just to clear this) with many rows and several columns.
I want to get some data into a string for use as a tooltip. The way I do it now is to read the contents of the HTML file as a string and use string manipulations to get the required data.
This is probably a very bad idea, so I was wondering if there is any API that I could use to read text from a specific row and column in an HTML file (for example, column 2 of row 2). I would prefer not to use an external DLL file, but I will have to use it if there is no other way.
Any ideas?
source share