I have a HTML table (well I didn't make it but I am using it, just to clear that up) with many rows and a few columns.
I want to get some of the data into a string to use as a tooltip. The way I am doing it now is reading the contents of the HTML file as a string and using string manipulation to get the data I want.
This is probably a very bad idea, so I was wondering if there is any API I could use to read text from a specific row and column in a HTML file (like row 2 column 2). I would prefer not using an external .dll library file but I'll have to use it if there is no other way.
Any ideas?