Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

athomason's scratchpad

by athomason (Curate)
on Jun 05, 2004 at 08:37 UTC ( [id://361421]=scratchpad: print w/replies, xml ) Need Help??

#!/usr/bin/perl use strict; use warnings; use XML::Twig; my $compressed_filename = shift || die; my $reader = new IO::Handle::Zlib; $reader->open($compressed_filename, "rb") or die "could not open $compressed_filename: $!"; my $twig = XML::Twig->new( twig_handlers => { h1 => sub { $_->set_tag( 'h2') }, }, ); $twig->parse($reader); $twig->print; package IO::Handle::Zlib; use base qw/ IO::Zlib IO::Handle /;
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (4)
As of 2024-03-29 12:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found