?
=?iso-8859-1?q?Jean-Fran=E7ois_Michaud?=
Hello,
I was wondering if anybody could point me in the right direction
regarding this.
I have unicode entities in an XML in hexadecimal format and I need to
be able to convert to ISO entities. Are there facilities available to
do this easily or do I have to parse all text and convert everything
manually? If thats what I have to do, is there any code already
available that would orient me in the right direction?
This is my XML snippet.
XML:
<?xml version = "1.0" encoding = "UTF-8"?>
<root>
<para>Å Å å Ã β ε ϰ
λ μ</para>
</root>
I basically need to something like this:
SGML:
<root>
<para>Å Å å Ã &b.beta; &b.epsi; &b.kappav;
&b.lambda; &b.mu;</para>
</root>
Thanks
Regards
Jeff
I was wondering if anybody could point me in the right direction
regarding this.
I have unicode entities in an XML in hexadecimal format and I need to
be able to convert to ISO entities. Are there facilities available to
do this easily or do I have to parse all text and convert everything
manually? If thats what I have to do, is there any code already
available that would orient me in the right direction?
This is my XML snippet.
XML:
<?xml version = "1.0" encoding = "UTF-8"?>
<root>
<para>Å Å å Ã β ε ϰ
λ μ</para>
</root>
I basically need to something like this:
SGML:
<root>
<para>Å Å å Ã &b.beta; &b.epsi; &b.kappav;
&b.lambda; &b.mu;</para>
</root>
Thanks
Regards
Jeff