AssignXMLNode: Assign sub-nodes to an XML node

Description Usage Arguments Value Author(s) References See Also Examples

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").

Usage

1
2
3
4
5
6
## 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.

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.

value

one or more XMLNode objects which are to be the sub-nodes of x.

Value

The XML node x containing the new or modified nodes.

Author(s)

Duncan Templle Lang

References

http://www.w3.org, http://www.omegahat.org/RSXML

See Also

[.XMLNode [[.XMLNode append.xmlNode xmlSize

Examples

1
2
3
 top <- xmlNode("top", xmlNode("next","Some text"))
 top[["second"]] <- xmlCDataNode("x <- 1:10")
 top[[3]] <- xmlNode("tag",attrs=c(id="name"))

cosmicexplorer/xmlr documentation built on May 30, 2019, 8:28 a.m.