I need a solution to read an HTML file which has many tables .
Iterate through all the tables and convert them to CSV format .
Is it possible to read/parse html files using MSXML 6.0 ?
Is there any class that can perform such a task for native c++?
Thanks ,
Jenny
December 28th, 2011, 10:52 AM
S_M_A
Re: Html to csv
You might find a class that does what you need if this is a very common problem. If not you have to write your own code and msxml is probably as useful as any other xml parser.
December 28th, 2011, 11:46 AM
Jenny Horn
Re: Html to csv
Thanks ,
When I tried to load the html document with msxml it failed .
But when I try to load a regular xml schema is succeeds.
Does someone have a code which loads html to msxml class?