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)

13
votes
8answers
12k 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 ...
39
votes
2answers
55k 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 ...
23
votes
10answers
26k 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 = ...
92
votes
9answers
77k views

How to use xpath in Python?

Is there a full implementation? How is the library used, where is its website?
82
votes
5answers
39k 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 ...
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?
36
votes
12answers
62k 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
35
votes
6answers
37k 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> ...
13
votes
2answers
4k views

Nokogiri/Xpath namespace query

I'm trying to pull out the dc:title element using an xpath. I can pull out the metadata using the following code. doc = <<END <?xml version="1.0" encoding="UTF-8"?> <package ...
4
votes
3answers
6k views

How to use XPath on xml docs having default namespace

I want to manipulate xml doc having default namespace but no prefix. Is there a way to use xpath without namespace uri just as if there is no namespace? I believe it should be possible if we set ...
44
votes
3answers
43k 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="???"/>
71
votes
7answers
80k 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
31
votes
5answers
22k 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> ...
33
votes
4answers
30k 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.
10
votes
6answers
21k views

XSLT Replace function not found

I am writing an XSLT transformation in which I wish to use the Replace function to do a regex match and replace. However, Visual Studio 2008 reports that 'replace()' is an unknown XSLT ...
10
votes
4answers
4k 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 ...
0
votes
0answers
613 views

Get xpath location of element in iframe(iframe from my domain)

I have a two codes and I try to connect this two codes in some way. Also in code is function for get xpath location but how to use this on iframe. $(#iframeID).... and function to write result of ...
18
votes
4answers
14k views

How to retrieve namespaces in XML files using Xpath

I have an XML file that starts like this: <Elements name="Entities" xmlns="XS-GenerationToolElements"> I'll have to open a lot of these files. Each of these have a different namespace but ...
25
votes
9answers
20k 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> ...
14
votes
3answers
4k views

Will XPath 2.0 and/or XSLT 2.0 be implemented in PHP?

The question was asked but deleted by the asker before it received an answer. Because I believe the question is sound and legitimate and serves a purpose, I'm asking it again and provide the answer I ...
16
votes
5answers
9k views

distinct in Xpath?

I have this XML file, from which I'd like to count the number of users referenced in it. But they can appear in more than one category, and I'd like these duplicates not to be taken into account. In ...
12
votes
8answers
9k views

Encoding XPath Expressions with both single and double quotes

XPath (v1) contains no way to encode expressions. If you only have single OR double quotes then you can use expressions such as //review[@name="Bob's Pizza"] //review[@name='"Pizza" Pam'] But if ...
7
votes
1answer
13k views

How to use XPath function in a XPathExpression instance programatically?

My current program need to use programatically create a XPathExpression instance to apply to XmlDocument. The xpath needs to use some XPath functions like "ends-with". However, I cannot find a way to ...
7
votes
4answers
12k views

How do you identify duplicate values in a numerical sequence using XPath 2.0?

I have an XPath expression which provides me a sequence of values like the one below: 1 2 2 3 4 5 5 6 7 It is easy to convert this to a set of unique values 1 2 3 4 5 6 7 using distinct-values() . ...
3
votes
2answers
2k views

case insensitive xpath searching in php

I have an xml file like this: <volume name="Early"> <book name="School Years"> <chapter number="1"> <line number="1">Here's the first line with Chicago in it.</line> ...
31
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 ...
43
votes
2answers
71k 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')] ...
9
votes
7answers
7k views

How to calculate the XPath position of an element using Javascript?

Let's say I have a large HTML file with different kinds of tags, similar to the StackOverflow one you're looking at right now. Now let's say you click an element on the page, what would the ...
21
votes
4answers
11k 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"?> ...
12
votes
5answers
21k views

How do I retrieve element text inside CDATA markup via XPath?

Consider the following xml fragment: <Obj> <Name><![CDATA[SomeText]]></Name> </Obj> How do I retrieve the "SomeText" value via XPath? I'm using Nauman Leghari's ...
6
votes
3answers
10k views

how to disable dtd at runtime in java's xpath?

I got dtd in file and I cant remove it. When i try to parse it in Java I get "Caused by: java.net.SocketException: Network is unreachable: connect", because its remote dtd. can I disable somehow dtd ...
10
votes
3answers
17k views

XPath query with PHP

Here's the XML code i'm working with: <inventory> <drink> <lemonade supplier="mother" id="1"> <price>$2.50</price> ...
3
votes
2answers
3k views

Getting all visible text from a webpage using Selenium

I've been googling this all day with out finding the answer, so apologies in advance if this is already answered. I'm trying to get all visible text from a large number of different websites. The ...
-1
votes
1answer
594 views

Xpath transformation not working in java

This is my xml document. I want to sign only the userID part using xml signature. I am using xpath transformation to select that particular element. <samlp:AuthnRequest ...
8
votes
6answers
6k views

How to query XML using namespaces in Java with XPath?

When my XML looks like this (no xmlns) then I can easly query it with XPath like /workbook/sheets/sheet[1] <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <workbook> ...
3
votes
3answers
5k views

Is it possible to use a Dynamic xPath expression in a xslt style sheet?

I'd like to use the value of an xslt parameter in an xpath expression. Specifically, as part of a not() call in an <xsl:if expression. <xsl:transform version="1.0" ...
2
votes
1answer
12k views

PHP Xpath : get all href values that contain needle

Working with PHP Xpath trying to quickly pull certain links within a html page. The following will find all href links on mypage.html: $nodes = $x->query("//a[@href]"); Whereas the following will ...
3
votes
2answers
1k views

SelectNodes with XPath ignoring cases

I have a problem finding elements in XPath that's contains a certain string ignoring character casing. I want to find in a HTML page all the nodes with id contains the text "footer" ignoring it's ...
1
vote
1answer
66 views

Extracting a class from the section attribute using xsl

I have a XSLT question which follows on from the question I asked last week. XSL for Xml: Inserting specific classes using XSL The challenge is to insert classes according to the section attribute. I ...
43
votes
5answers
38k 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: ...
47
votes
7answers
75k 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 ...
7
votes
5answers
2k views

What's wrong with my XPath/XML?

I'm trying a very basic XPath on this xml (same as below), and it doesn't find anything. I'm trying both .NET and this website, and XPaths such as //PropertyGroup, /PropertyGroup and ...
15
votes
7answers
11k 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. ...
11
votes
3answers
19k views

XPath : select all following siblings until another sibling

Here is an excerpt of my xml : <node/> <node/> <node id="1">content</node> <node/> <node/> <node/> <node id="2">content</node> <node/> ...
8
votes
3answers
6k views

NamespaceContext and using namespaces with XPath

Resolving an xpath that includes namespaces in Java appears to require the use of a NamespaceContext object, mapping prefixes to namespace urls and vice versa. However, I can find no mechanism for ...
12
votes
2answers
7k views

Javascript get XPath of a node

Is there anyway to return an XPath string of a DOM element in Javascript?
7
votes
6answers
14k views

XPath to return string concatenation of qualifying child node values

Can anyone please suggest an XPath expression format that returns a string value containing the concatenated values of certain qualifying child nodes of an element, but ignoring others: <div> ...
5
votes
4answers
8k views

How can I use XPath to perform a case-insensitive search and support non-english characters?

I am performing a search in an XML file, using the following code: $result = $xml->xpath("//StopPoint[contains(StopName, '$query')]"); Where $query is the search query, and StopName is the name ...
4
votes
2answers
6k views

SimpleXML: Selecting Elements Which Have A Certain Attribute Value

In an XML document, I have elements which share the same name, but the value of an attribute defines what type of data it is, and I want to select all of those elements which have a certain value from ...
3
votes
1answer
3k views

How get first level of dom elements by Domdocument PHP?

How get first level of dom elements by Domdocument PHP? Example with code that not works - tooken from ...

1 2 3 4 5 21