Home > Articles > Web Development > Perl

Process HTML with a Perl Module

Given a mess of HTML text to process, many Perl programmers will reflexively reach into their regular expression toolbox. But, instead of focusing on their high-level task, they end up spending most of their time struggling with the low-level details of patterns to match the myriad ways that the HTML text might be structured and formatted. In this article, brian d foy shows you how to use HTML::TreeBuilder so you end up using a natural, easy-to-follow interface that your maintenance programmers can understand. Now that's effective Perl.
Like this article? We recommend

Joseph Hall, Joshua McAdams, and I have recently updated Effective Perl Programming. When Joseph wrote the first edition in 1997, Perl 5 was still young and the answer to many problems was brute force programming. Now effective Perl programming involves using the right tools that are already out there. Throughout this article, I'll refer to additional information in our book by pointing out its Item number so you can read more about the techniques I use.

Given a mess of HTML text to process, many Perl programmers will reflexively reach into their regular expression toolbox. Since many people grew up with Perl's string handling features, they tend to use those for every task. But, instead of focusing on their high-level task, they end up spending most of their time struggling with the low-level details of patterns to match the myriad ways that the HTML text might be structured and formatted. One answer on HTML processing on Stackoverflow popularly expresses the frustration many programmers have for people who insist on using regular expressions to handle HTML.

Programming is certainly fun, but isn't it even more fun to get more done instead of constantly inventing HTML parsing? I suppose that some people might enjoy inventing new HTML parsers for every program, but that's not a very efficient way to work.

The most common answer to most Perl questions dealing with HTML is simply "Are you using a CPAN module?" The Comprehensive Perl Archive Network, or just CPAN, is Perl's killer feature. Not only does CPAN have a module for almost anything, but there are also several aggregator services such as CPAN Search that bring together many of the community projects, including CPAN Testers and CPAN RT issue tracker. You can find out just about anything you want to know about the HTML::TreeBuilder by looking at its CPAN Search page. Many of our updated Items in Effective Perl Programming provide advice on the right modules to use (Item 71), as well as which ones you might want to avoid (Item 68). Sometimes it isn't clear which module you should use, so we give you some advice on evaluating modules too (Item 67).

Since many other people have to process HTML text too, there are already many solutions on CPAN. Most of them handle all the niggling details you probably weren't thinking about while you were digging around in your regex toolbox. There are several modules that can process HTML text in different ways, but for this example you'll use is HTML::TreeBuilder to extract the title and the <title> text. This article is very similar to "Process XML data with XML::Twig" that I've posted at the Effective Perler blog that supports our book.

Throughout this article, you'll work with this HTML text from a file named test.html:

<html>
<head>
<title>This is the title</title>
</head>
<body>
<h1>This is the heading</h1>

<a href="http://search.cpan.org">Search CPAN</a>
<a href="http://perldoc.perl.org">Perldoc</a>
<div>
<a href="http://testers.cpan.org">Testers</a>
<img src="https://www.example.com/images/logo.gif">
</div>

</body>
</html>

The first part of your process to parse this file, no matter the higher level goal, is simple. You create a new HTML::TreeBuilder object then tell it what to parse:

#!perl
use strict;
use warnings;

use HTML::TreeBuilder;

my $html  = HTML::TreeBuilder->new;
my $root  = $html->parse_file( 'test.html' );

$root stores the object that points to the top of the tree structure that represents the text that you parsed. You can now interact with the tree to find parts within it and work with those parts individually. To get the title of the HTML page, you need to find the <head> tag then find the <title> tag within that. The find() method traverses the tree looking for the right spot then returns an HTML::Element object that represents just that part of the tree. In this case, you stored that subtree in $head. To find the <title>, you use find() with just the $head subtree:

# Do it one step at a time
my $head  = $root->find( 'head' );
my $title = $head->find( 'title' );

Once you find the element that you want, you can extract the content from it. The content_array_ref returns a array reference of items that represent everything under that part of the tree. Under a <title> tag, you don't expect anything other than the title (and if that's not true, someone's in trouble!), so you grab the first item in the list, which is at index 0:

	

my $title_text = $title->content_array_ref->[0];

If you are concerned about HTML documents that don't have a TITLE tag, you can wrap that in an eval block:

if( my $title_text = eval{ $title->content_array_ref->[0] } )
	{
	print "Title is [$title_text]\n";
	}

To get the <title> content, you went step-by-step to extract the <head>, look inside the <head> subtree, and finally extract the content. You could use method chaining to do it all at once, again in an eval to catch any parsing problems:

# Do it all together:
if( my $h1 = eval { 
	$root->find( 'body' )->find( 'h1' )->content_array_ref->[0] }
	)
	{
	print "H1 is [$h1]\n";
	}

Putting that all together, you have your HTML processing script, and you didn't write a single regular expression:

#!perl
use strict;
use warnings;

use 5.010;

use HTML::TreeBuilder;

my $html  = HTML::TreeBuilder->new;
my $root  = $html->parse_file( 'test.html' );

# Do it one step at a time
my $head  = $root->find( 'head' );
my $title = $head->find( 'title' );
if( my $title_text = eval{ $title->content_array_ref->[0] } )
	{
	print "Title is [$title_text]\n";
	}

# Do it all together:
if( my $h1 = eval { 
	$root->find( 'body' )->find( 'h1' )->content_array_ref->[0] }
	)
	{
	print "H1 is [$h1]\n";
	}

That's all fine and good, but it gets even better. I'm the author of a module named HTML::SimpleLinkExtor, which is based on HTML::LinkExtor, which is based on HTML::Parser. Although it works, and it was quite useful and novel in its day, HTML::TreeBuilder makes it almost trivial now. You just have to know what sort of tags you need to extract without worrying about the extraction details. How could you do that with the tree structure that HTML::TreeBuilder provides?

The trick is to use a queue to keep track of which parts of the tree you haven't processed. You start with the root element, get its content list, and decide what to do. In this case, you'll use Perl 5.10's foreach-when (Item 24), which is the Perly version of switch. The foreach portion "topicalizes" the item it's working on by storing it in $_ (and it has to be $_), and the when() is Perl's answer to C's case(). If the element is not a reference, it's not an HTML::Element object so you just skip it. If it's a reference, it should be an HTML::Element object, so check if it is an <a> tag. If it's an <a> tag, extract the <href> attribute and push it onto @links. Otherwise, push the item onto queue for further processing: whatever it is might have sub-elements that contain <a> tags:

#!perl
use strict;
use warnings;

use 5.010;

my $html  = HTML::TreeBuilder->new;
my $root  = $html->parse_file( 'test.html' );

my @queue = ( $root->elementify );
my @links = ();
while( my $element = shift @queue )
	{	
	foreach ( $element->content_list )
		{
		when( not ref $_ ) { 1; }
		when( $_->tag eq 'a' )
			{
			push @links, $_->attr( 'href' );
			}
		default 
			{
			printf "Tag was %s\n", $_->tag;
			push @queue, $_;
			}			
		}
	}

That's so much simpler that what HTML::SimpleLinkExtor does. You don't have to add additional branches (see "Eliminate needless loops and branching" in the book's blog); you just have to make that middle branch a bit more flexible. Add a %tags hash that lists the tags you are interested in and make their values the attribute name that holds the link. Now you check that the tag exists in the hash, and if so, you extract the right attribute value:


#!perl
use strict;
use warnings;

use 5.010;

use HTML::TreeBuilder;

my $html  = HTML::TreeBuilder->new;
my $root  = $html->parse_file( 'test.html' );

my @queue = ( $root->elementify );
my @links = ();

my %tags = qw(
	a     href
	img   src
	frame src
	);
	
while( my $element = shift @queue )
	{	
	foreach ( $element->content_list )
		{
		when( not ref $_ ) { 1; }
		when( exists $tags{ $_->tag } )
			{
			my $tag = $_->tag;
			push @links, $_->attr( $tags{$tag} );
			}
		default 
			{
			printf "Tag was %s\n", $_->tag;
			push @queue, $_;
			}
		
		}
	}
		
print "Links are @links\n";

I wish I'd had this module when I created HTML::SimpleLinkExtor. Life would have been so much simpler.

How about transforming the HTML text, though? So far you've only extracted elements. HTML::TreeBuilder also lets you change the tree as you process it. Suppose that you want to add <class> attributes to every <a> and <tt> tag because you want to use a CSS stylesheet.

You need to add a link to the stylesheet, so after you create the HTML tree, you create a separate HTML::Element object in $css_link to represent the <link> tag that you want to insert. After you create the new element, you find the <head> tag as before then use the insert_element() method to add the $css_link element:

#!perl
use strict;
use warnings;

use 5.010;

use HTML::TreeBuilder;

my $html  = HTML::TreeBuilder->new;
my $root  = $html->parse_file( 'test.html' );

my $css_link = HTML::Element->new( 
	'link', 
	'rev'  => 'stylesheet',
	'href' => 'http://www.example.com/test.css',
	'type' => 'text/css',
	);

$root->find( 'head' )->insert_element( $css_link );

For the next part of the program, you use a variation of the previous example. Instead of collecting a list of links, however, you modify the <a> and <img> tags that you find. When you call the attr() method with more than one argument, it sets the attribute rather than fetch it:

my @queue = ( $root->elementify );

my %tags = qw(
	a     link
	img   picture
	);
	
while( my $element = shift @queue )
	{	
	foreach ( $element->content_list )
		{
		when( not ref $_ ) { 1; }
		when( exists $tags{ $_->tag } )
			{
			my $tag = $_->tag;
			push @links, $_->attr( class => $tags{$tag} );
			}
		default 
			{
			push @queue, $_;
			}
		
		}
	}

When you are finished processing, you output the new HTML text by calling the as_HTML method:

print $root->as_HTML;

The output shows your added CSS link, and class attribute in the a tags:

<html>
	<head>
		<title>This is the title</title>

		<link css="text/css" href="http://www.example.com/test.css" rev="stylesheet" />
	</head>
	<body>
		<h1>This is the heading</h1><a class="link" href="http://search.cpan.org">Search CPAN</a> <a class="link" href="http://perldoc.perl.org">Perldoc</a><div><a class="link" href="http://testers.cpan.org">Testers</a> <img class="picture" src="https://www.example.com/images/logo.gif" /></div>

	</body>
</html>

Wasn't that simple? You didn't have to know anything about what HTML text actually looks like, what its rules are, or any of the myriad low-level details that trip up most people. You focus on the higher-level processing that makes up your task, and with HTML::TreeBuilder, you end up using a natural, easy-to-follow interface that your maintenance programmers can understand. Now that's effective Perl.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020