0
votes
Which HTML element has the largest number of children of a certain type, for instance tags?
A very brute force solution in Perl, using XML::Twig:
#!/usr/bin/perl
use strict;
use warnings;
use XML::Twig;
my $max=0; # max number of p's
my $path; # path to the element
XM …
3
votes
what actually is PCDATA and CDATA?
Both PCDATA and CDATA are parsed. They are both character data.
They both must only include valid characters. For example if your document encoding is UTF-8, the content of CDATA s …
2
votes
How can I extract addresses and phone number from HTML?
There are 2 parts to this: extract the complete address from the page, and parse that address into something you can use (store the various parts in a DB for example).
For the first part yo …
2
votes
How can I find the contents of a div using Perl’s HTML modules, if I know a tag inside of it?
You could use (yet another module!) HTML::TreeBuilder::XPath, which, as per its name, will let you use XPath on HTML: …
