Quantcast
Channel: Parsing xml files in perl - Stack Overflow
Browsing all 5 articles
Browse latest View live

Answer by lkisac for Parsing xml files in perl

XML::Simple will work, but it is also recommended to use LibXML. Here is a perlmonks article on some notable differences and converting from XML::Simple to LibXML.One way to do it using LibXML using...

View Article



Answer by mirod for Parsing xml files in perl

It's not clear to me what data structure you want to create exactly. or why you'd want to create data structures when you could be using XPath to get the data you need without having to map the XML...

View Article

Answer by Slaven Rezic for Parsing xml files in perl

Another completely different approach: use an XML schema, and use the CPAN module XML::Compile for automatic conversion of the XML data. In constrast to other xml-to-data tools like XML::Simple,...

View Article

Answer by KeepCalmAndCarryOn for Parsing xml files in perl

You need to domy @grand_kids = $child -> childNodes();within your second foreach and do another step through the attributesI have worked the example for you#!/usr/bin/perl use XML::LibXML;use...

View Article

Parsing xml files in perl

I need to store xml data <pathway name="path:ko00010" org="ko" number="00010" title="Glycolysis / Gluconeogenesis" image="http://www.kegg.jp/kegg/pathway/ko/ko00010.png"...

View Article

Browsing all 5 articles
Browse latest View live




Latest Images