How to get certain columns of text from a webpage into a text file?
Let says my webpage have a table of numeric data, I want to capture those numbers into a text file. How can i do that?
Well, one way would be to strip out all HTML tags by deleting everything between "<" and ">". But that would destroy the formatting. How much of the structure (formatting) do you want to keep?
Take a look at
http://www.euromind.com/iedelphi/uilessparser/ieparser.htm
for parsing html pages. It has lots of functions
from site it says
MSHTML is in IEParser used as the "engine" in a HTML-parser component.
Drop the component on a form. Set URL-property and run function execute.
Enjoy!
Kunfu Faresi