[xml] =?utf-8?q?decimal_problem?=
- From: "David" <lordkain tlen pl>
- To: xml @ gnome. org <xml gnome org>
- Subject: [xml] decimal problem
- Date: Tue, 12 Dec 2006 09:28:03 +0100
Hello world,
I am having a problem with the decimal symbol. The result of writing a
floating-point-number to an xml document is
<number>10,1234</number>
The result I want is a dot as decimal symbol, like this
<number>10.1234</number>
If I adjust the county settings of my computer and say the decimal
symbol must be an dot it works out fine, but this is not a very good solution because I dont want to be
dependent of the system settings of a computer. I have tried to use the setlocale function with
setlocale(LC_ALL, "English"). This didnt seem to work.
Anybody has an clue?
Cheerz, David
[Source code listing]
-----------------------------
xmlTextWriterPtr writer = NULL;
xmlDocPtr doc = NULL;
char xmlFilename[100] = "uitvoer.xml";
writer = xmlNewTextWriterDoc(&doc, 0);
if (NULL != writer)
{
xmlTextWriterStartDocument(writer, NULL, "ISO-8859-1", NULL);
xmlTextWriterStartElement(writer, BAD_CAST "Main");
xmlTextWriterWriteFormatElement(writer, BAD_CAST "getal", "%f",10.12345);
xmlTextWriterEndElement(writer);
xmlFreeTextWriter(writer);
xmlSaveFormatFile(xmlFilename, doc, 1);
xmlFreeDoc(doc);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]