Jump to content

Recommended Posts

Posted

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));

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
×
×
  • Create New...