Learn R Programming

openxlsx2 (version 0.3.1)

xml_add_child: 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 read_xml()

Examples

Run this code
xml_node <- ""
xml_child <- ""

# 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, "", level = c("b", "c"))

Run the code above in your browser using DataLab