xml_path: Retrieve the xpath to a node

View source: R/xml_path.R

xml_pathR Documentation

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

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

hadley/xml2 documentation built on Jan. 10, 2024, 3:52 p.m.