pankaj_it09 has asked for the wisdom of the Perl Monks concerning the following question:
my $t= XML::Twig->new(); $t->parsefile("new.xml"); my $root= $t->root; my @para= $root->children(); # get the root's children foreach my $para (@para) { print $para->text()."\n"; }
<root> <record> <id>1</id> <sched>QWERTY</sched> <filePath>D:/Book1.xls</filePath> <fString>bata</fString> </record> <record> <id>2</id> <sched>PANAMA</sched> <filePath>C:/test.doc</filePath> <fString>vata</fString> </record> </root>
|
|---|