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.

learn more… | top users | synonyms (1)

91
votes
9answers
75k views

How to use xpath in Python?

Is there a full implementation? How is the library used, where is its website?
75
votes
5answers
36k 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 ...
69
votes
7answers
77k 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
63
votes
14answers
36k 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 ...
51
votes
3answers
21k 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
46
votes
4answers
43k 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 ...
45
votes
7answers
73k 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 ...
44
votes
3answers
42k 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="???"/>
43
votes
5answers
15k views

XPath and XSLT 2.0 for .NET? [closed]

.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?
40
votes
5answers
37k 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: ...
39
votes
2answers
68k 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')] ...
34
votes
12answers
60k 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
33
votes
2answers
50k views

How to read XML using XPath in Java

I want to read XML data using XPath in Java, so for the information I have gathered I am not able to parse XML according to my requirement. here is what I want to do: Get XML file from online via ...
32
votes
4answers
29k 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.
32
votes
6answers
36k 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> ...
31
votes
6answers
6k 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. }] ...
30
votes
1answer
27k views

XPath: How to select elements based on their value?

I am new to using XPath and this may be a basic question. Kindly bear with me and help me in resolving the issue. I have an XML file like this: <RootNode> <FirstChild> <Element ...
29
votes
5answers
21k 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> ...
29
votes
2answers
6k 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 ...
28
votes
2answers
80k views

Select values from XML field in SQL Server 2008

Just looking at my XML field, my rows look like this: <person><firstName>Jon</firstName><lastName>Johnson</lastName></person> ...
28
votes
1answer
12k 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 ...
27
votes
12answers
8k 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?
26
votes
4answers
17k 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> ...
26
votes
1answer
18k views

Getting attribute from xpath

Given an xml structure like so: <?xml version="1.0" encoding="ISO-8859-1"?> <bookstore> <book> <title lang="eng">Harry Potter</title> ...
25
votes
1answer
15k 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 ...
25
votes
9answers
19k 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> ...
23
votes
10answers
25k 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 = ...
23
votes
2answers
24k views

XPath: select text node

Having the following XML: <node>Text1<subnode/>text2</node> How do I select either the first or the second text node via XPath? Something like this: /node/text()[2] of course ...
22
votes
10answers
21k 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 ...
22
votes
3answers
13k views

How to use XPath with XElement or LINQ?

Consider the following XML: <response> <status_code>200</status_code> <status_txt>OK</status_txt> <data> <url>http://bit.ly/b47LVi</url> ...
21
votes
1answer
14k views

How to extract attribute’s value through XPath

How can I extract an attribute’s value of a node through XPath? A sample schema is <parents name='Parents'> <Parent id='1' name='Parent_1'> <Children name='Children'> ...
20
votes
6answers
12k views

Xpath test if is number

How i can check with xpath if e node value is number? Any ideas?
20
votes
4answers
10k 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"?> ...
20
votes
12answers
9k views

Is 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 ...
19
votes
7answers
21k 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 ...
19
votes
3answers
9k views

HtmlAgilityPack selecting childNodes not as expected

I am attempting to use the HtmlAgilityPack library to parse some links in a page, but I am not seeing the results I would expect from the methods. In the following I have a HtmlNodeCollection of ...
19
votes
6answers
12k views

Special Character in XPATH Query

I use the following XPATH Query to list the object under a site. "ListObject[@Title='SomeValue']". SomeValue is dynamic. This query works as long as SomeValue does not have an apostrophe ('). I use ...
19
votes
3answers
9k views

XPath: select child elements that do *not* have a specific name

<a> <b/> <c/> <d/> <b/> <e/> </a> How do I select those children of "a" that are not "b"?
19
votes
5answers
20k views

XPath : Get nodes where child node contains an attribute

Suppose I have the following XML: <book category="CLASSICS"> <title lang="it">Purgatorio</title> <author>Dante Alighieri</author> ...
19
votes
3answers
6k views

Matching a node based on a sibling's value with XPath

Having a XML document like this: <?xml version="1.0" encoding="UTF-8"?> <records type="array"> <record> <name>svn</name> ...
19
votes
3answers
501 views

Transform Javascript XPath in valid PHP query() XPath | normalize JS XPath --> PHP

This is valid XPath in Javascript: id("priceInfo")/div[@class="standardProdPricingGroup"]/span[1] And this turned into valid PHP XPath to be used with DOMXPath->query() is ...
18
votes
5answers
30k views

XSL if else condition

I have a requirement where I'd like to have if else statement to check whether a node has attributes or it has just string. Eg: 1 of the node has 0 File(s) found and the other has attribs such as ...
18
votes
4answers
7k 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 ...
18
votes
3answers
11k views

case-insensitive matching in xpath?

For example, for the xml below <CATALOG> <CD title="Empire Burlesque"/> <CD title="empire burlesque"/> <CD title="EMPIRE BURLESQUE"/> <CD title="EmPiRe ...
18
votes
2answers
20k views

how to use XPath with XDocument?

There is a similar question, but seems that solution didn't work out in my case: Wierdness with XDocument, XPath and namespaces Here is the XML i am working with <?xml version="1.0" ...
18
votes
3answers
5k views

How to select all leaf nodes using XPath expression?

I believe it's possible but couldn't figure out the syntax. Something like this: xmlNode.SelectNodes("//*[count(child::*) <= 1]") but this is not correct.
18
votes
3answers
8k views

Java XSLT processors supporting XPath 2.0

What are the currently available XSLT processors supporting XPath 2.0 standard?
18
votes
6answers
3k 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 ...
17
votes
1answer
22k views

XPath contains(text(),'some string') doesn't work when used with node with more than one Text subnode

I have a small problem with Xpath contains with dom4j ... Lets say my XML is <Home> <Addr> <Street>ABC</Street> <Number>5</Number> ...
17
votes
6answers
22k views

Best XPath tools [closed]

What tools are you guys using for XPath and why? Right now I'm using SketchPath because its totally awesome, but its a windows app that needs to be installed WhiteBeam online XPath test bedbecause ...

1 2 3 4 5 171