xml_add_child {openxlsx2} | R Documentation |
append xml child to node
Description
append xml child to node
Usage
xml_add_child(xml_node, xml_child, level, pointer = FALSE, ...)
Arguments
xml_node |
xml_node |
xml_child |
xml_child |
level |
optional level, if missing the first child is picked |
pointer |
pointer |
... |
additional arguments passed to |
Examples
xml_node <- "<a><b/></a>"
xml_child <- "<c/>"
# add child to first level node
xml_add_child(xml_node, xml_child)
# add child to second level node as request
xml_node <- xml_add_child(xml_node, xml_child, level = c("b"))
# add child to third level node as request
xml_node <- xml_add_child(xml_node, "<d/>", level = c("b", "c"))
[Package openxlsx2 version 1.8 Index]