xml2 (version 1.1.0)

xml_path: Retrieve the xpath to a node

Description

This is useful when you want to figure out where nodes matching an xpath expression live in a document.

Usage

xml_path(x)

Arguments

x
A document, node, or node set.

Value

A character vector.

Examples

Run this code
x <- read_xml("<foo><bar><baz /></bar><baz /></foo>")
xml_path(xml_find_all(x, ".//baz"))

Run the code above in your browser using DataCamp Workspace