Niraikalai Vijay wrote: > Hi > > Our group has to generate file in IFF format which is > similar to XML format.
If your format is "kinda-like-XML" but not quite, you might be interested in Data::XML::Variant http://search.cpan.org/dist/Data-XML-Variant/ Instructuve discussion about it at: http://use.perl.org/~Ovid/journal/26952 > Even the tags are out of order > As we are using hash references, looks like we can't > put the tags in the order it got entered. > > Does the tag ordering matters for XML parser? It usually does, although XML::Simple does not necessarily help you get tags in the order you want. That is the price you have to pay in order to have that nice and simple data structure it works with. -- Michel Rodriguez Perl & XML xmltwig.com _______________________________________________ Boston-pm mailing list [email protected] http://mail.pm.org/mailman/listinfo/boston-pm

