Revision 287202dd00fee3600869b20e1fddb9e044635e70 authored by ORPHANED on 15 July 2018, 16:11:40 UTC, committed by cran-robot on 15 July 2018, 16:11:40 UTC
1 parent a7a3d04
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