XML - Ansi

  • Thread starter Thread starter Ofer
  • Start date Start date
O

Ofer

I created an XML file, but it was created in utf-8 format,
and I need to create it in ansi format.
How can I create it in Ansi format?

Thanks for your help
 
I don't think the standard Access XML export system allows this.
However, for plain English text, Ansi and UTF-8 are the same, and it may
perhaps be enough just to open the XML file in Notepad or some other
text editor, and change
encoding="utf-8"
to
encoding="windows-1252"
or perhaps
encoding="iso-8859-1"

Otherwise, I'm sure there are XML transforms (if that's the right term)
that can make the conversion for you; I suggest you research in XML
forums.
 
Thanks
I found the problem, I use the Hebrew fonts, and that
change the format of the file from Ansi to utf-8.

I'll try to save the file from one format to another
-----Original Message-----

I don't think the standard Access XML export system allows this.
However, for plain English text, Ansi and UTF-8 are the same, and it may
perhaps be enough just to open the XML file in Notepad or some other
text editor, and change
encoding="utf-8"
to
encoding="windows-1252"
or perhaps
encoding="iso-8859-1"

Otherwise, I'm sure there are XML transforms (if that's the right term)
that can make the conversion for you; I suggest you research in XML
forums.

I created an XML file, but it was created in utf-8 format,
and I need to create it in ansi format.
How can I create it in Ansi format?

Thanks for your help

--
John Nurick [Microsoft Access MVP]

Please respond in the newgroup and not by email.
.
 
Back
Top