[xml] xml API to add attribute
- From: samaram s <samaram007 gmail com>
- To: xml gnome org
- Subject: [xml] xml API to add attribute
- Date: Wed, 13 Oct 2010 10:34:44 -0400
Hi,
I am new to libxml group. I chose this because it is very popular one.Please give us your support to complete my understanding of libxml2.
A .
I would like to generate script something like below,
<Option
Value="00">English</Option>
<Option Value="01">French</Option>
B.
But when i am doing like below,
node1 = xmlNewChild(node, NULL, BAD_CAST "Option", NULL);
node2 = xmlNewText(BAD_CAST "Value= 00[English]");
xmlAddChild(node1,node2);
xmlAddChild(node, node1);
I get like ,
<Option>Value= 00[English]</Option>
<Option>Value= 01[French]</Option>
Is there a way to do like shown in A. Which API should i use to do so?
Please give me some idea.
Thanks,
Sam
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]