peacekorea has asked for the wisdom of the Perl Monks concerning the following question:
=====================================================#!/usr/bin/perl -w use strict; use LWP::Simple; use XML::TokeParser; use XML::Simple; my $t; my $cont = get("20.xml"); my $p = new XML::TokeParser(\$cont); $t = $p->get_tag("permalink"); $t = $p->get_trimmed_text("/permalink"); getstore($t, "20.txt");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML::TokeParser, how to use it??
by Tanktalus (Canon) on Jul 05, 2005 at 02:08 UTC | |
by peacekorea (Novice) on Jul 05, 2005 at 05:04 UTC | |
|
Re: XML::TokeParser, how to use it??
by ikegami (Patriarch) on Jul 04, 2005 at 21:39 UTC | |
|
Re: XML::TokeParser, how to use it??
by sk (Curate) on Jul 04, 2005 at 21:47 UTC | |
|
Re: XML::TokeParser, how to use it??
by gellyfish (Monsignor) on Jul 05, 2005 at 07:59 UTC |