XMLTextMode
,
XMLProcessingInstruction
.
This function provides access to their raw contents.
This has been extended to operate recursivel on arbitrary XML nodes
that contain a single text node.
xmlValue(x, ignoreComments = FALSE)
XMLNode
object whose
contents are to be returned.
TRUE
does not include the text in XML comment nodes.
If this is
FALSE
, the text in the comments is part
of the return value.
value
slot of the
XMLNode
object.
This is typically a string.
Duncan Temple Lang
http://www.w3.org/XML, http://www.jclark.com/xml, http://www.omegahat.org
node <- xmlNode("foo", "Some text") xmlValue(node) xmlValue(xmlTextNode("some more raw text"))