This is a little program I wrote to help me A) get to grips with Perl references. B) Understand the stuctures returned by XMLIn.

It may give you a place to start.

#!e:/Perl/bin/Perl.exe -w use strict; use warnings; use XML::Simple; my $file = shift or die <<USAGE; Usage: $0 <xmlfile> [label] [0|1] Where; <xmlfile> is the path/name of the .xml file to parse. [label] is the base of the references as output (default:'\$xml->' +). [0|1] indicate whether to append the contents of the tags. (defaul +t:0 (no)). Parses an XML file using XML::Simple and (if the doc is well-forme +d) outputs the perl references to access the elements of the structur +e, optionally appending the contents of the tags. USAGE my $xml = XMLin( $file, parseropts => [ ErrorContext => 1, ], forcearr +ay => 0, ); sub walk { my ($label, $valuesFlag) = (shift||"xml->", shift||0); my ($output, $tab) = ( "", ". "); foreach my $thing (shift) { if ( ref($thing) eq "HASH" ) { $output .= ( !ref ${$thing}{$_} ) ? "$label\{$_\}" . ( $valuesFlag ? " := ${$thing}{$_}\n" : "\n" ) : walk( $label . "{$_}", $valuesFlag, ${$thing} +{$_} ) foreach ( keys %$thing ); } if ( ref($thing) eq "ARRAY" ) { $output .= ( !ref @{$thing}[$_] ) ? "$label\[$_\] " . ( $valuesFlag ? " := @{$thing}[$_]\n" : "\n" ) : walk( $label . "[$_]", $valuesFlag, @{$thing}[$_ +] ) foreach ( 0.. @{$thing} -1 ); } $output .= " := $thing\n" if ( ref $thing eq "SCALAR" ); } return $output; } (my $label= shift) =~ s/^(.+)+$/$1->/; #print $label . "\n"; print walk $label, shift||0, $xml;
When I run this on your sample XML using the following command line:

xmlrefs.pl C:\test\items.xml "" 1 >itemlist.refs

where items.xml is your sample XML; "" is a place holder for an optional alternative base tag (I know getopt::std/long!); and the "1" indicates I want to see the contents of the tags as well.

Gives the following output.

xml->{Category1} := General xml->{Origin} := Canada xml->{Description} := A wonderful table. xml->{DlrItemNum} := 1 xml->{Category2} := Old Products xml->{Length} := 5.18 xml->{Title} := Table xml->{Width} := 3.56 xml->{Circa} := Early 20th Century xml->{Dimensions} := 3.56 x 5.18m

I find that I tend to use a label (second param) of the form "#xml->" and append the output to the end of my perl script for easy reference. Specifying 0 (or omitting) the 3 parameter so that you don't get the contents of the tags make cut&paste even easier.

Update:Corrected SCALER=>SCALAR spelling. (Here, and in my copy of the prog:).


In reply to Re: easy way of parsing XML by BrowserUk
in thread easy way of parsing XML by amir

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.