Revision c5d145673d3feb15d9c872aea3be3647966d1a4f authored by ORPHANED on 19 June 2017, 11:43:32 UTC, committed by cran-robot on 19 June 2017, 11:43:32 UTC
1 parent 3152619
Raw File
xpathPointer.xml
fl = system.file("exampleData", "mtcars.xml", package="XML")
xml <- xmlTreeParse(fl, useInternal=TRUE)

node = xpathApply(xml, "/*/*")[[1]]
x = xpathApply(node, "/*/*")[[1]]


sapply(xpathApply(node, "//*[@id]"), xmlName)
back to top