vote up -2 vote down star

I have a file which has

<Doc>
<Text>
....
</Text>
</Doc>
<Doc>
<Text>
</Text>
</Doc>

How do I extract only the <text> elements, process them and then extract the next text element efficiently?

I do not know how many I have in a file?

flag

65% accept rate
Take a look at stackoverflow.com/questions/487213/… for another Perl xml parser answer. – Robert P Oct 23 at 23:48

4 Answers

vote up 5 vote down check

XML::Simple can do this easily:

## make sure that there is some kind of <root> tag
my $xml_string = "<root><Doc>...</Doc></root>";

my $xml = XML::Simple->new();
$data = $xml->XMLin($xml_string);

for my $text_node (@{ $data->{'Doc'} }) {
    print $text_node->{'Text'},"\n"; ## prints value of Text nodes
}
link|flag
What if I didn't know how many <Doc> I had in a file, how would I use it? Thanks. – kunjaan Oct 23 at 23:20
And I get a mismatched tag error...do you know what that means? – kunjaan Oct 23 at 23:27
use Data::Dumper; print Dumper($data); – Daren Schwenke Oct 23 at 23:28
@kunjaan: your xml is not valid. You can save it to file and open in IE for example to see if it's valid – Ivan Nevostruev Oct 23 at 23:32
vote up 3 vote down

Take a look at XML::Simple.

It makes looking through XML as simple as walking a hash.

link|flag
vote up 4 vote down

Using a Perl XML parsing module would save you a bit of work:

Perl-XML module list

link|flag
vote up 6 vote down
#!/usr/bin/perl

use strict;
use warnings;

use XML::Twig;

my $t = XML::Twig->new(
    twig_roots  => {
        'Doc/Text' => \&print_n_purge,
});

$t->parse(\*DATA);

sub print_n_purge {
    my( $t, $elt)= @_;
    print $elt->text;
    $t->purge;
}

__DATA__
<xml>
<Doc>
<Text>
....
</Text>
</Doc>
<Doc>
<Text>
</Text>
</Doc>
</xml>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.