Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: getting the txt of terminal nodes only XML::TWIG

by jkahn (Friar)
on May 01, 2003 at 22:26 UTC ( [id://254841]=note: print w/replies, xml ) Need Help??


in reply to getting the txt of terminal nodes only XML::TWIG

This worked for me, if I understand you correctly:
#!/usr/bin/perl -w use strict; use XML::Twig; my $twig= XML::Twig->new(); my $file = "message.xml"; $twig ->parsefile( $file ); my $root = $twig->root; my @all_text = gather_text($root); print join ("\n---", @all_text), "\n"; sub gather_text { my $node = shift; my (@children) = $node->children(); if (not @children) { # this tag has no children. grab its text data, with no # surrounding tag, and return it. return $node->sprint('NOTAGS'); } else { # recurse into each child my (@text); foreach (@children) { push @text, (gather_text($_)); } return @text; } }
When I test it on the XML of your original post, I get the following results:
[jeremy@serpent pm-test]$ ./term-xml.pl perlquestion --- Isanchez --- Hi, I have to recursively go over xml files (that look very differently from each other) in a folder and collect every content for every tag. I have tried with TWig code but it doesn't work because it grabs all tags including parent tags and then prints first the contents that belong to the parents i.e. all and then the contents again but this time for each doughter node. Can any wise monk give some idea of what to do ? thanks, --- 4 [jeremy@serpent pm-test]$
That's only once for each tag, rather than once for each tag and then again for its children.

Does that help?

(Nice to see you here, Isanchez!)
Update: corrected link to XML.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://254841]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-19 01:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found