in reply to Printing & instead of & while converting Excel file to xml file

'&' is a reserved symbol in XML, used in the same way as the backslash in perl strings. So if you want to have a real backslash in a perl string you have to use two backslashes. If you want a real ampersand in XML data you have to use '&'.

  • Comment on Re: Printing & instead of & while converting Excel file to xml file