XML and & character

  • Thread starter Thread starter BenI
  • Start date Start date
B

BenI

Hello,

I have a XML configuration file that uses ISO 8859-1 encoding.
I should have & characters to be like other alphanumeric characters.

How should I code & character in XML file? Plain & seems to throw Parsing
Exception.

I Can 't use UTF8.

Cheers!
 
While you're at it, you should also replace

' with ' (this is optional)
" with "
< with &lt;
 
Back
Top