Tagged Questions
The primary purpose of XPath is to address parts of an XML document. It also provides basic facilities for manipulation of strings, numbers and booleans. XPath uses a compact, non-XML syntax. XPath operates on the abstract, logical structure of an XML document, rather than its surface syntax.
55
votes
12answers
17k views
Is there an online tester for xPath selectors? [closed]
I know there are some online regex evaluators.. very useful, matching in real time. They are like web applications of RegexBuddy.
I was wondering if there is a similar thing for xPath selectors? I am ...
48
votes
8answers
43k views
how to use xpath in python
Is there a full implementation? How is the library used, where is its website?
38
votes
6answers
32k views
xpath find if node exists
Using a xpath query how do you find if a node (tag) exists at all?
For example if I needed to make sure a website page has the correct basic structure like /html/body and /html/head/title
24
votes
4answers
14k views
Can I use a Regex in an XPath expression?
Something like ".//div[@id='foo\d+]" to capture div tags with id='foo123'.
I'm using .NET, if that matters.
22
votes
3answers
21k views
How can I convert a string to upper- or lower-case with XSLT?
How do you do case conversion in XSL?
<xsl:variable name="upper">UPPER CASE</xsl:variable>
<xsl:variable name="lower" select="???"/>
22
votes
6answers
17k views
Find position of a node using xpath
Anyone know how to get the position of a node using xpath?
Say I have the following xml:
<a>
<b>zyx</b>
<b>wvu</b>
<b>tsr</b>
...
21
votes
6answers
6k views
XPath and XSLT 2.0 for .NET?
.NET 3.5 doesn't completely support XPATH 2.0 or XSLT 2.0, which is just too bad. Does anyone know if these two will be included and fully supported in any future .NET versions?
20
votes
7answers
11k views
Is there a way to get the xpath in google chrome?
I have a webpage I want to use with YQL. But I need the xpath of a specific item. I can see it in the debug tools area for google chrome but I don't see a way to copy that xpath.
Is there a way to ...
20
votes
8answers
27k views
How to parse XML in Bash?
Ideally, what I'd like to be able to do is:
cat xhtmlfile.xhtml |
getElementViaXPath --path='/html/head/title' |
sed -e 's%(^<title>|</title>$)%%g' > titleOfXHTMLPage.txt
20
votes
4answers
14k views
Is there an XSLT name-of element?
In XSLT there is the
<xsl:value-of select="expression"/>
to get the value of an element, but is there something to select the tag-name of the element?
In a situation like this:
...
19
votes
2answers
11k views
XPath: Select first element with a specific attribute
The XPath bookstore/book[1] selects the first book node under bookstore.
How can I select the first node that matches a more complicated condition, e.g. the first node that matches ...
19
votes
9answers
13k views
Using Xpath With Default Namespace in C#
I've got an XML document with a default namespace. I'm using a XPathNavigator to select a set of nodes using Xpath as follows:
XmlElement myXML = ...;
XPathNavigator navigator = ...
19
votes
7answers
31k views
Using XPATH to search text containing
I use XPather Browser to check my XPATH expressions on an HTML page.
My end goal is to use these expressions in Selenium for the testing of my user interfaces.
I got an HTML file with a content ...
18
votes
3answers
8k views
XPath: How to match attributes that contain a certain string
I have the problem to get the node if there is more than one attribute.
Example:
<div class="atag btag" />
This is my xpath expression: //*[@class='atag']
The expression only works with ...
15
votes
2answers
1k views
Java XPath (Apache JAXP implementation) performance
NOTE: If you experience this issue as well, please upvote it on Apache JIRA:
https://issues.apache.org/jira/browse/XALANJ-2540
I have come to an astonishing conclusion that this:
Element e ...
14
votes
3answers
6k views
How do you use “not” in xpath
I want to write something of the sort:
//a[not contains(@id, 'xx')]
(meaning all the links that there 'id' attribute doesn't contain the string 'xx')
I can't find the right syntax.
Thanks
14
votes
3answers
4k views
Need Help using XPath in ElementTree
I am having a heck of a time using ElementTree 1.3 in Python. Essentially, ElementTree does absolutely nothing.
My XML file looks like the following:
<?xml version="1.0"?>
...
14
votes
4answers
7k views
XPath to select multiple tags
given this simplified data format:
<a>
<b>
<c>C1</c>
<d>D1</d>
<e>E1</e>
<f>don't select this one</f>
...
14
votes
10answers
4k views
Cross-browser XPath implementation in JavaScript
I'm looking for a XPath library to query over XML documents in FF, IE, Opera and Safari... and couldn't find one. Have you seen any?
14
votes
4answers
4k views
What is more efficient for parsing Xml, XPath with XmlDocuments, XSLT or Linq?
I have parsed XML using both of the following two methods...
Parsing the XmlDocument using the object model and XPath queries.
XSL/T
But I have never used...
The Linq Xml object model that was ...
13
votes
2answers
22k views
How to use XPath contains() here?
I'm trying to learn xpath. I looked at the other contains() examples around here, but nothing that uses an AND operator. I can't get this to work:
//ul[@class='featureList' and contains(li, 'Model')]
...
13
votes
3answers
4k views
Java XSLT processors supporting XPath 2.0
What are the currently available XSLT processors supporting XPath 2.0 standard?
13
votes
9answers
8k views
What is the correct XPath for choosing attributes that contain “foo”?
Given this XML, what XPath returns all elements whose prop attribute contains foo (the first three nodes):
<bla>
<a prop="Foo1"/>
<a prop="Foo2"/>
<a prop="3Foo"/>
<a ...
12
votes
4answers
146 views
Is there a JSON equivalent of XQuery/XPath?
When searching for items in complex JSON arrays and hashes, like:
[
{ "id": 1, "name": "One", "objects": [
{ "id": 1, "name": "Response 1", "objects": [
// etc.
}]
...
12
votes
11answers
4k views
Is it there any XPath processor for SAX model?
I'm looking for an XPath evaluator that doesn't rebuild the whole DOM document to look for the nodes of a document: actually the object is to manage a large amount of XML data (ideally over 2Gb) with ...
12
votes
1answer
6k views
Current node vs. Context node in XSLT/XPath?
In XSLT, what is the difference between the "current node" and the "context node"? You can find both terms used here: http://www.w3.org/TR/xslt.
When would you use one or the other? How do you refer ...
12
votes
5answers
6k views
XPath + Namespace Driving me crazy
Its a .vbproj and looks like this
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
...
11
votes
2answers
2k views
Get Nth child of a node using xpath
My sample input XML is:
<root>
<a>
<b>item</b>
<b>item1</b>
<b>item2</b>
<b>item3</b>
<b>item4</b>
</a>
...
11
votes
2answers
2k views
How do I get a NameTable from an XDocument?
How do I get a NameTable from an XDocument?
It doesn't seem to have the NameTable property that XmlDocument has.
EDIT: Judging by the lack of an answer I'm guessing that I may be missing the point.
...
11
votes
1answer
5k views
xpath: find a node that has a given attribute whose value contains a string
Is there an xpath way to find a node that has a given attribute whose value contains a given string?
For example I have an xml document and want to find a node where the address attribute contains ...
11
votes
8answers
12k views
Create XML Nodes based on XPath?
Does anyone know of an existing means of creating an XML hierarchy programatically from an XPath expression?
For example if I have an XML fragment such as:
<feed>
<entry>
...
11
votes
3answers
2k views
Why doesn't xpath work when processing an XHTML document with lxml (in python)?
I am testing against the following test document:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
...
11
votes
7answers
9k views
Parse HTML via XPath
In .Net, I found this great library, HtmlAgilityPack that allows you to easily parse non-well-formed HTML using XPath. I've used this for a couple years in my .Net sites, but I've had to settle for ...
10
votes
7answers
263 views
Are there any Java HTML parsers where the generated Nodes retain indexes to the original text?
I'd like to query a HTML document as XML (e.g. with XPath), so I need to pass the HTML through some form of HTML cleaner.
But I'd also like to make modifications to the original source string based ...
10
votes
4answers
938 views
What are good CLI tools for JSON?
General Problem
Though I may be diagnosing the root cause of an event, determining how many users it affected, or distilling timing logs in order to assess the performance and throughput impact of a ...
10
votes
4answers
1k views
Speeding up xpath
i have a 1000 entry document whose format is something like
<Example>
<Entry>
<n1></n1>
<n2></n2>
</Entry>
<Entry>
...
10
votes
3answers
9k views
Xpath expression with multiple predicates
I am trying to build a complex xpath expression which will answer the following condition.
From the XML data below, returns the User entity which:
His loginname is "user1"
His name is "User 1"
He ...
10
votes
4answers
13k views
XPath - Find elements by attribute namespace
I'm trying to use XPath to find all elements that have an element in a given namespace.
For example, in the following document I want to find the foo:bar and doodah elements
<?xml version="1.0" ...
10
votes
11answers
6k views
How best to use XPath with very large XML files in .NET?
I need to do some processing on fairly large XML files ( large here being potentially upwards of a gigabyte ) in C# including performing some complex xpath queries. The problem I have is that the ...
10
votes
4answers
2k views
XPATHS and Default Namespaces
What is the story behind XPath and support for namespaces? Did XPath as a specification precede namespaces? If I have a document where elements have been given a default namespace:
<foo ...
9
votes
8answers
3k views
Generate/get xpath from XML node java
I'm interested in advice/pseudocode code/explanation rather than actual implementation.
I'd like to go trough xml document, all of its nodes
Check the node for attribute existence
Case if node ...
9
votes
5answers
8k views
XPath: find link URL by link text
I have a well formed XHTML page.
I want to find the destination URL of a link when I have the text that is linked.
Example
<a href="http://stackoverflow.com">programming questions ...
9
votes
1answer
14k views
XSLT — select child nodes based on their contents
Say I have this piece of xml:
<AA>
<BB>foo</BB>
<CC>bar</CC>
<DD>baz</DD>
<EE>bar</EE>
</AA>
How do I select all the child nodes of <AA> that have `bar' as its ...
9
votes
5answers
17k views
XSLT - How to select XML Attribute by Attribute?
this is the structure of my source xml:
<root>
<DataSet Value="A">
<Data Value1="1" Value2="anythingA1" />
<Data Value1="2" Value2="anythingA2" />
<Data Value1="3" ...
9
votes
7answers
6k views
Get the XPath to an XElement?
I've got an XElement deep within a document. Given the XElement (and XDocument?), is there an extension method to get its full (i.e. absolute, e.g. /root/item/element/child) XPath?
E.g. ...
8
votes
1answer
116 views
Differences in query algorithms between XPath and CSS
I'm wondering why someone would want to use CSS selectors rather than XPath selectors, or vice-versa, if he could use either one. I think that understanding the algorithms that process the languages ...
8
votes
6answers
370 views
Full text searching XML data with Python: best practices, pros & cons
Task
I want to use Python for doing full text searches of XML data.
Example data
<elements>
<elem id="1">some element</elem>
<elem id="2">some other element</elem>
...
8
votes
4answers
2k views
XPath generator
I have a rather complex XML document, is there any tool can help me generate the XPath string by selecting the relevant nodes?
8
votes
2answers
2k views
how to retrieve parent node using xquery?
I am using xml and xqueries.I usually use an xpath expression relative to a parent node to retrieve its child node. But, I am not sure how to do the opposite meaning if I have a child node, how do I ...
8
votes
6answers
451 views
Xpath equivalent to http://gskinner.com/RegExr/ for Regex?
I wonder if there is a Xpath equivalent to http://gskinner.com/RegExr/ for Regex?
In this way you could just type an xpath query and it will show you what elements were selected.
I haven't found ...