xmlSearchNs | R Documentation |
This function allows one to search an XML tree from a particular node and find the namespace definition for a given namespace prefix or URL. This namespace definition can then be used to set it on a node to make it the effective namespace for that node.
xmlSearchNs(node, ns, asPrefix = TRUE, doc = as(node, "XMLInternalDocument"))
node |
an |
ns |
a character string (vector of length 1).
If |
asPrefix |
a logical value. See |
doc |
the XML document in which the node(s) are located |
An object of class XMLNamespaceRef.
Duncan Temple Lang
libxml2
newXMLNode
txt = '<top xmlns:r="http://www.r-project.org"><section><bottom/></section></top>'
doc = xmlParse(txt)
bottom = xmlRoot(doc)[[1]][[1]]
xmlSearchNs(bottom, "r")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.