The problem is that XML::Simple is supposed to parse XML (I believe that it uses XML::Parser to do that). The rules for what constitutes valid XML are very strict. The rules also say that when an XML parser encounters a document that isn't valid XML then it shouldn't try to recover, it should just die with an appropriate error message.

What you are trying to parse isn't XML. Therefore trying to parse it with an XML parser isn't going to work.

You really have two options. You can fix your document so that it is valid XML which will allow you to use all the XML tools to process it. Or you can stay with your current "almost-XML" and write your own set of tools to process it.

I know which way I'd go :-)

--
<http://dave.org.uk>

"The first rule of Perl club is you do not talk about Perl club."
-- Chip Salzenberg


In reply to Re^2: XML::Simple cannot parse Simple XML file by davorg
in thread XML::Simple cannot parse Simple XML file by jeanluca

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.