in reply to Re: So Simple, Yet no tutorial covers it
in thread So Simple, Yet no tutorial covers it
I have to disagree with this bit of advice. Using a fully-fledged HTML parser, IMO, usually does not help in extracting structured data from an html page. Parsing and extracting the markup often adds an unneeded layer of complexity to the task, and offers little in the way of additional "resiliance" to changes in page design/layout (one can reasonably argue that parsing markup results in more sensitivity to such changes).
I agree that parsing html with regex is a bad idea, but it is not the html that one is generally interested in. The html says little or nothing about the structure of the data inside the document. If the document in question is script-generated, I suggest that you simply grab the data using whatever sensible regex you can come up with, and don't mess with parsing the html out of it.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: So Simple, Yet no tutorial covers it
by chromatic (Archbishop) on Jan 22, 2001 at 09:17 UTC |