Board index » Visual Studio » How can I extract data from an HTML table?

How can I extract data from an HTML table?

Visual Studio351
What's the best way to extract data from a table from a URL using VB code?



Do I have to extract the HTML source code and then parse it? Or what?



Thanks!!


-
 

Re:How can I extract data from an HTML table?

Dump the HTML into a text file and have a look. Basically, you remove all

the HTML (everything between matching '<' and '>' characters), and what

you're left with is the raw text and data. If the source file is structured,

you can usually get a bit smarter than that and search for specific tags.





"michaaal" <res0gyio@verizon.net>wrote in message

Quote
What's the best way to extract data from a table from a URL using VB code?



Do I have to extract the HTML source code and then parse it? Or what?



Thanks!!









-