TommyIndigo
Programmer
I'm trying to parse an HTML file, so I can eventually pull data into my Access database. I've come across DOM and MSXML, but not sure how to tackle this.
I can write my own logic once I can get to the tags. I will need to examine tag attributes, and values for the tags.
For example, one field I need is embedded in a DIV tag:
Therefore, I need to search for DIV tags that have the class attribute set to bizName, and get the value in between.
I need to do this via VB, and not Javascript or other languages.
Any ideas on a general approach?? Once I'm pointed in the right direction, I can dig deeper on my own. Sample code would be MOST appreciated! Thanks, TOM
I can write my own logic once I can get to the tags. I will need to examine tag attributes, and values for the tags.
For example, one field I need is embedded in a DIV tag:
Code:
<DIV class=bizName>A to Z Appliances</DIV>
Therefore, I need to search for DIV tags that have the class attribute set to bizName, and get the value in between.
I need to do this via VB, and not Javascript or other languages.
Any ideas on a general approach?? Once I'm pointed in the right direction, I can dig deeper on my own. Sample code would be MOST appreciated! Thanks, TOM