[xml] libxml2 Child Indexing?
- From: Uzumaki Naruto <narutoreplicate gmail com>
- To: xml gnome org
- Subject: [xml] libxml2 Child Indexing?
- Date: Thu, 16 Apr 2009 12:20:18 -0700
Hi all,
I'm using libxml2, and I've been scouring the documentation for a function to retrieve the handle of a child node that is not either the first/last (ie: 2nd child / 5).
What I'm looking for is, for example:
rootNode = xmlDocGetRootElement(doc);
secondChildNode = xmlFoo(rootNode , 2);
printf("Node name: %s", secondChildNode->name);
I am currently doing:
rootNode = xmlDocGetRootElement(doc);
firstChildNode = xmlFirstElementChild(rootNode);
secondChildNode = xmlNextElementSibling(nextChildNode);
printf("Node name: %s", secondChildNode->name);
Thanks,
UN.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]