I am using XML::Simple to parse some xml-ish data.
The problem is that someplace in the data (there are a lot of records) there is something that is invalid. I get the most unhelpful error
Name contains invalid start character: ' '
I have no control over the data coming in, and making sure that I get ALL the data is not as important as just having some data, so I want to just erase any chars from the file that are invalid.
Is there such a think as an XML vildifier module out there? Forcing the data to become valid XML so that XML::Simple can parse it?
If not, any suggestions? (which brings up another mystery to me) I tried to just substitute out anything that is not a word char (and of course the > & </ ) but for some reason when I did
$file =~ s!¥W!!gs;
Everything in $file disapears. ¥W means non-word char right?
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.