Determine the number of children in an XMLNode object.
确定儿童在一个XMLNode对象的数量。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function is a simple way to compute the number of sub-nodes (or children) an XMLNode object possesses. It is provided as a convenient form of calling the xmlSize function.
这个函数是一个简单的方法来计算的XMLNode对象拥有的子节点(或子女)。它调用xmlSize函数作为一种方便的形式提供。
用法----------Usage----------
## S3 method for class 'XMLNode'
length(x)
参数----------Arguments----------
参数:x
the XMLNode object whose length is to be queried.
XMLNode,其长度是要查询的对象。
值----------Value----------
An integer giving the number of sub-nodes of this node.
一个整数,此节点的子节点的数目。
(作者)----------Author(s)----------
Duncan Temple Lang
参考文献----------References----------
参见----------See Also----------
xmlSize xmlChildren
xmlSizexmlChildren
实例----------Examples----------
doc <- xmlTreeParse(system.file("exampleData", "mtcars.xml", package="XML"))
r <- xmlRoot(doc, skip=TRUE)
length(r)
# get the last entry[得到的最后一个条目]
r[[length(r)]]