GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTML::TagParser(3) User Contributed Perl Documentation HTML::TagParser(3)

HTML::TagParser - Yet another HTML document parser with DOM-like methods

Parse a HTML file and find its <title> element's value.

    my $html = HTML::TagParser->new( "index-j.html" );
    my $elem = $html->getElementsByTagName( "title" );
    print "<title>", $elem->innerText(), "</title>\n" if ref $elem;

Parse a HTML source and find its first <form action=""> attribute's value and find all input elements belonging to this form.

    my $src  = '<html><form action="hoge.cgi">...</form></html>';
    my $html = HTML::TagParser->new( $src );
    my $elem = $html->getElementsByTagName( "form" );
    print "<form action=\"", $elem->getAttribute("action"), "\">\n" if ref $elem;
    my @first_inputs = $elem->subTree()->getElementsByTagName( "input" );
    my $form = $first_inputs[0]->getParent();

Fetch a HTML file via HTTP, and display its all <a> elements and attributes.

    my $url  = 'http://www.kawa.net/xp/index-e.html';
    my $html = HTML::TagParser->new( $url );
    my @list = $html->getElementsByTagName( "a" );
    foreach my $elem ( @list ) {
        my $tagname = $elem->tagName;
        my $attr = $elem->attributes;
        my $text = $elem->innerText;
        print "<$tagname";
        foreach my $key ( sort keys %$attr ) {
            print " $key=\"$attr->{$key}\"";
        }
        if ( $text eq "" ) {
            print " />\n";
        } else {
            print ">$text</$tagname>\n";
        }
    }

HTML::TagParser is a pure Perl module which parses HTML/XHTML files. This module provides some methods like DOM interface. This module is not strict about XHTML format because many of HTML pages are not strict. You know, many pages use <br> elemtents instead of <br/> and have <p> elements which are not closed.

This method constructs an empty instance of the "HTML::TagParser" class.

If new() is called with a URL, this method fetches a HTML file from remote web server and parses it and returns its instance. URI::Fetch module is required to fetch a file.

If new() is called with a filename, this method parses a local HTML file and returns its instance

If new() is called with a string of HTML source code, this method parses it and returns its instance.

This method fetches a HTML file from remote web server and parse it. The second argument is optional parameters for URI::Fetch module.

This method parses a local HTML file.

This method parses a string of HTML source code.

This method returns the element which id attribute is $id.

This method returns an array of elements which name attribute is $name. On scalar context, the first element is only retruned.

This method returns an array of elements which tagName is $tagName. On scalar context, the first element is only retruned.

This method returns an array of elements which className is $tagName. On scalar context, the first element is only retruned.

This method returns an array of elements which $attrname attribute's value is $value. On scalar context, the first element is only retruned.

This method returns $elem's tagName.

This method returns $elem's id attribute.

This method returns $elem's innerText without tags.

This method returns a new object of class HTML::Parser, with all the elements that are in the DOM hierarchy under $elem.

This method returns the next sibling within the same parent. It returns undef when called on a closing tag or on the lastChild node of a parentNode.

This method returns the previous sibling within the same parent. It returns undef when called on the firstChild node of a parentNode.

This method returns the first child node of $elem. It returns undef when called on a closing tag element or on a non-container or empty container element.

This method creates an array of all child nodes of $elem and returns the array by reference. It returns an empty array-ref [] whenever firstChild() would return undef.

This method returns the last child node of $elem. It returns undef whenever firstChild() would return undef.

This method returns the parent node of $elem. It returns undef when called on root nodes.

This method returns a hash of $elem's all attributes.

This method returns the value of $elem's attributes which name is $key.

The HTML-Parser is simple. Methods innerText and subTree may be fooled by nested tags or embedded javascript code.

The methods with 'Sibling', 'child' or 'Child' in their names do not cache their results. The most expensive ones are lastChild() and previousSibling(). parentNode() is also expensive, but only once. It does caching.

The DOM tree is read-only, as this is just a parser.

This module natively understands the character encoding used in document by parsing its meta element.

    <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">

The parsed document's encoding is converted as this class's fixed internal encoding "UTF-8".

    drry [drry]
    Juergen Weigert [jnw]
    Yusuke Kawasaki [kawasaki] [kawanet]
    Tim Wilde [twilde]

The following copyright notice applies to all the files provided in this distribution, including binary files, unless explicitly noted otherwise.

Copyright 2006-2012 Yusuke Kawasaki

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2012-05-03 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.