Jump to content

Tip: Occam's razor of HTML Parsing


Recommended Posts

Doing a lot of HTML parsing lately. Here's little trick I use, "Occam's razor "

1. Find element containning your info

2. Delete everything else by overwriting Doc's HTML with element's HTML

3. Parse

;find Div or other element containing all what you need

$MyDiv=_IETagNameGetCollection($oIE,"div",5);

;Apply occam's razor

_IEDocWriteHTML($oIE,String($MyDiv.innerHtml));

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...