Mercurial > pub > Impl
diff _test/any.pl @ 13:bb8d67f811ea
merge heads
author | Sergey |
---|---|
date | Wed, 02 Sep 2009 23:11:14 +0400 |
parents | 75980091813b |
children | 818c74b038ae |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/_test/any.pl Wed Sep 02 23:11:14 2009 +0400 @@ -0,0 +1,19 @@ +#!/usr/bin/perl -w +#use strict; + +use HTML::Element; +$a = HTML::Element->new('a', href => 'http://www.perl.com/'); +$a->push_content("The Perl Homepage"); + +$tag = $a->tag; +print "$tag starts out as:", $a->starttag, "\n"; +print "$tag ends as:", $a->endtag, "\n"; +print "$tag\'s href attribute is: ", $a->attr('href'), "\n"; + +$links_r = $a->extract_links(); +print "Hey, I found ", scalar(@$links_r), " links.\n"; + +print "And that, as HTML, is: ", $a->as_HTML, "\n"; +$a = $a->delete; + +