xml2 (version 1.1.0)

xml_serialize: Serializing XML objects to connections.

Description

Serializing XML objects to connections.

Usage

xml_serialize(object, connection, ...)
xml_unserialize(connection, ...)

Arguments

object
R object to serialize.
connection
an open connection or (for serialize) NULL or (for unserialize) a raw vector (see ‘Details’).
...
Additional arguments passed to read_xml.

Examples

Run this code
library(xml2)
x <- read_xml("<a>
  <b><c>123</c></b>
  <b><c>456</c></b>
</a>")

b <- xml_find_all(x, "//b")
out <- xml_serialize(b, NULL)
xml_unserialize(out)

Run the code above in your browser using DataCamp Workspace