Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Hi,
I am using XML::Excel this module to convert Excel file to XML .In Excel there are some ampersand symbol(&).While convert from Excel to XML.IN XML file There are printing like (amp;) instead of printing &
This is my code
use XML::Excel; $excel_obj = XML::Excel->new(); $excel_obj->parse_doc("file.xls", {headings => 1}); $excel_obj->print_xml("file_output.xml");
Regards,
Senthil
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Printing & instead of & while converting Excel file to xml file
by jethro (Monsignor) on Sep 15, 2011 at 12:18 UTC | |
|
Re: Printing & instead of & while converting Excel file to xml file
by keszler (Priest) on Sep 15, 2011 at 12:27 UTC |