xmlName {XML} | R Documentation |
Each XMLNode object has a tag name introduced
in the <name ...>
entry in an XML document.
This function returns that name.
xmlName(node)
node |
The XMLNode object whose tag name is being requested. |
A character vector of length textit{1}
which is the node$name
entry.
Duncan Temple Lang
http://www.w3.org/XML, http://www.jclark.com/xml, http://www.omegahat.org
xmlChildren
,
xmlAttrs
,
xmlTreeParse
fileName <- system.file("data", "test.xml", pkg="XML") doc <- xmlTreeParse(fileName) xmlName(doc$doc$children[[1]])