[<-.XMLNode(XML)
[<-.XMLNode()所属R语言包:XML
Assign sub-nodes to an XML node
指定的XML节点的子节点
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These functions allow one to assign a sub-node to an existing XML node by name or index. These are the assignment equivalents of the subsetting accessor functions. They are typically called indirectly via the assignment operator, such as x[["myTag"]] <- xmlNode("mySubTag").
这些功能允许一个指定的子节点到现有的XML节点的名称或索引。这是分配等值的子集的访问功能。他们通常称为间接地通过赋值操作符,如x[["myTag"]] <- xmlNode("mySubTag")。
用法----------Usage----------
## S3 replacement method for class 'XMLNode'
x[i] <- value
## S3 replacement method for class 'XMLNode'
x[i] <- value
## S3 replacement method for class 'XMLNode'
x[[i]] <- value
参数----------Arguments----------
参数:x
the XMLNode object to which the sub-node is to be assigned.
XMLNode对象,该子节点将被分配。
参数:i
the identifier for the position in the list of children of x into which the right-hand-side node(s) should be assigned. These can be either numbers or names.
儿童x到其中的右手侧的节点(s)应该被分配在列表中的位置的标识符。这些可以是数字或名称。
参数:value
one or more XMLNode objects which are to be the sub-nodes of x.
一个或多个XMLNode对象是子节点x。
值----------Value----------
The XML node x containing the new or modified nodes.
XML节点x包含新的或修改过的节点。
(作者)----------Author(s)----------
Duncan Templle Lang
参考文献----------References----------
<h3>See Also</h3> <code>[.XMLNode</code> <code>[[.XMLNode</code> <code>append.xmlNode</code> <code>xmlSize</code>
实例----------Examples----------
top <- xmlNode("top", xmlNode("next","Some text"))
top[["second"]] <- xmlCDataNode("x <- 1:10")
top[[3]] <- xmlNode("tag",attrs=c(id="name"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|