in reply to Problems with Microsft's new Office 'XML'
Using your first script with an "xls" file causes the error you see, however when I use it on the same file saved as "xml" it does not report an error.
Update
Here is some code to dump the xml file.
use strict; use warnings; use XML::Simple qw(:strict); use Data::Dumper; my $config = XMLin('./Book1.xml',forcearray => 1,keyattr => ['']); print Dumper($config);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problems with Microsft's new Office 'XML'
by graq (Curate) on Oct 05, 2005 at 07:39 UTC | |
by Corion (Patriarch) on Oct 05, 2005 at 07:47 UTC |