Im doing a program in C and i want to get two IPs from this .xml doc.
I was doing this way but its returning only the first IP:
void parseGlobalStats(xmlDocPtr doc, xmlNodePtr cur) {
xmlChar *IP;
cur = cur->xmlChildrenNode;
cur = cur->next;
cur = cur->xmlChildrenNode;
while (cur != NULL)
{
if ((!xmlStrcmp(cur->name, (const xmlChar *)"IP")))
{
IP = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
printf("IP = %s\n",IP);
}
return;
}
}
It is compiling well but it is returning only the first IP(179.199.24.207) when executed. How can i create a function that get 2 IPs from this doc and store it in a string variable?
Since you are only looking for some global stats (including
IP
), you can use xpath evaluation.Using xpath, the following file [ test.xml ]:
can extract
IP
with [ test.c ]:sample output:
Further reference