Tagged Questions

W3C Recommendation: XML Path Language (XPath) Version 2.0

learn more… | top users | synonyms

9
votes
5answers
10k views

Best XPath 2.0 Expression Evaluator (Eclipse)

What are the best XPath 2.0 Expression Evaluator for Eclipse? Any other standalone that is worth saying?
6
votes
1answer
1k views

Convert dateTime to unix epoch in xslt

I have a dateTime variable, and I want to convert it to a decimal value of epoch. How can this be done? I tried using: seconds-from-duration($time, xs:dateTime('1970-01-01T00:00:00')) but it just ...
5
votes
3answers
386 views

does JDK 6 support all features of XPath 2.0?

like for, sum, if, intersect...and if not, or not entirely, where can I find the details? And if it does, where can I find an official confirmation?
5
votes
2answers
405 views

XPath 2.0 Libraries for .Net

Which XPath 2.0 libraries (apart from saxon) are available, preferably for .Net?
4
votes
3answers
133 views

Using xquery FLWOR expressions to find multiple “where” restrictions

I am trying to find employees who work on projects located in Houston but the department the project is housed in is not located in Houston. I was trying to model the expression after this example of ...
4
votes
2answers
79 views

how to check parent of current node is root node or not in xslt?

I want to check the parent of current node is root node or not in Xslt.How i do that? Please Guide me to get out of this issue... Thanks & Regards, P.SARAVANAN
4
votes
3answers
989 views

How to concatenate two node-sets such that order is respected?

My understanding has been that, despite the fact that XSLT's "node-sets" are called "sets", they are, in fact, ordered lists of nodes (which is why each node is associated with an index). I've ...
4
votes
2answers
2k 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 ...
3
votes
4answers
58 views

how do i select following-siblings of my current process element until it statisfies the condition in for-each using xslt 2.0?

This is my XML Document(Small Snippt). <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <w:document xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main"> ...
3
votes
4answers
76 views

How do I find the number of elements in a <xs:list> using XSLT?

I have an XML schema that contains the following type : <xs:simpleType name="valuelist"> <xs:list itemType="xs:double"/> </xs:simpleType> A sample XML fragment would be: ...
3
votes
3answers
415 views

Saxon XSLT 2.0 and RFC 822 date format

What is the right way to format xs:dateTime to RFC 822?
3
votes
1answer
218 views

Applying templates to elements in a variable/sequence

When I use "apply-templates" and select a variable sequence, does the template act upon the context of the element in the sequence, or does it act upon the context of the element in the document? In ...
3
votes
4answers
832 views

MS VBA and XPath 2.0

Do any VBA libraries exist which will allow me to use XPath 2.0 within VBA? MSXML6 does not work with XPath 2.0. Basically, I want to parse XML documents using XPath 2.0 as it allows me to use ...
2
votes
2answers
38 views

Why does index-of() return multiple values when applied to a sequence of unique nodes?

I'm using xpath2's index-of value to return the index of current() within a sorted sequence of nodes. Using SAXON, the sorted sequence of nodes are unique, yet index-of returns a sequence of two ...
2
votes
2answers
51 views

Referencing current node's position in xpath expression

(Note: This post has been edited to show specific use case. See bottom.) I want to use the current node's value of position() inside an xpath expression (in which the context changes). Unfortunately, ...
2
votes
2answers
24 views

Counting special text of children in xpath

I have this xml document : <AAA> <CCC> <BBB>SALAM</BBB> <BBB>HALET KHUBE</BBB> <BBB>HEY</BBB> ...
2
votes
4answers
150 views

XQuery/XPath: Using count() and max() function for return of element with highest count

I have an XML file that contains authors and editors. <?xml version="1.0" encoding="UTF-8"?> <?oxygen RNGSchema="file:textbook.rnc" type="compact"?> <books xmlns="books"> ...
2
votes
1answer
119 views

How to get Text value of <legend> tag using xpath in ruby watir.(using IE)

I have following code in my ie web page. I want text value of tag (means "ABCD:"). I am using ruby watir for that. <fieldset> <legend class="fieldset">ABCD:</legend> ...
2
votes
3answers
111 views

How to use XPath-Functions like exists() in C#?

I want to read some Nodes from a XmlDocument-Object using the SelectNodes-Method and the XPathNavigator-Class. But C# is unable to evaluate this (validated with XMLSpy) XPath-Expressen: ...
2
votes
1answer
85 views

XPath 2.0: Retrieving nodes by attribute where value is case Insensitive

I am new to using XPath and I am trying to retrieve a node via its attribute but the problem is that the attribute is case insensitive meaning I won't exactly know how the string is cased in the ...
2
votes
2answers
77 views

How to make this specific query using xslt 2.0?

The Below mentioned content is my XML Document. <w:document> <w:body> <w:p pStyle="Heading1">Para1</w:p> <w:p ...
2
votes
1answer
81 views

XPATH matches function problem— works but doesn't work

I'm using Eclipse to run an XSL 2.0 (XPATH 2.0), and I have the following source: <testTop> <Level1 id="abc" Text="from 1-2"/> <Level1 id="pqr" Text="from 3-44" /> ...
2
votes
2answers
90 views

Select elements with unique values

I'm trying to parse an OpenOffice spreadsheet to obtain rows with unique values in the first column. I.E., I would like to retrieve from the following XML fragment all <table:table-row> ...
2
votes
3answers
118 views

Help turning xpath result into formatted string

I am trying to parse an xml feed using xpath. The feed contains categories that look like this: <categories> <category id="6">Category 6</category> <category id="12">Category ...
2
votes
3answers
96 views

finding maximum depth of chapter

everyone . In this case ,I want to conpute the maxximun depth of the chapter.For instance, a book without chapters has height 0 . A book only has chapters with no sections ,the height should be 1.The ...
2
votes
2answers
169 views

Validate IBAN using XSLT 2.0?

is it possible to write an XSLT function which can do the basic IBAN Mod-97 check? From Wikipedia: 1. Move the four initial characters to the end of the string. 2. Replace each letter in the string ...
2
votes
4answers
347 views

XPath: generate a relative expression from a root node to a specified node?

How can I generate the required XPath expression to traverse from a given root node to a specified node down the xml structure? I will receive HTML fragment of a table at runtime. I have to find the ...
2
votes
2answers
348 views

Filtering “MetaData”-nodes from xpath-query in magnolia jcr

i have a problem filtering specific nodes of a jackrabbit jcr in magnolia. when i submit following query : //element(*, standort)//* i get: 33 nodes returned in 18ms /standort/Standorte/MetaData ...
2
votes
2answers
662 views

split nodevalue with xpath

Is there some kind of split() function in xpath? Say I have this xml: <root> <path>C:\folder\filename</path> </root> And I want to retrieve 'filename', how can I do this? ...
2
votes
2answers
247 views

How to loop in a xml structure with xquery?

the xml is like this: <persons> <person> <name/> <surname/> </person> <person index=1> <name/> <surname/> </person> <person index=2> ...
2
votes
1answer
1k views

XPath search based on dynamic regular expressions

I have an XML like the one below: <?xml version="1.0" encoding="UTF-8"?> <Configuration> <Destinations> <Destination name="DEST1" > ...
1
vote
1answer
47 views

xsl:matching-substring always returns “false”

I'm trying to write a function which gets the domain name from a URL text in XML file i.e www.example.com. <xsl:function name="fdd:get-domain"> <xsl:param name="url"/> ...
1
vote
1answer
94 views

Regex character class subtraction with negative groups

This question relates to character class subtraction in regular expression (regex). I refer to the regex flavour of XPATH 2.0 second edition. When there are negative groups within a character class ...
1
vote
3answers
46 views

XPath - extract value from parent with highest node value

This is my XML snippet <FinancialSummary> <SummaryDate format="YYYYMMDD">20111231</SummaryDate> <Revenue currency="EUR">1249164523</Revenue> ...
1
vote
1answer
136 views

auto creating xml template based on string pattern using XSLT

I have string in below pattern author~time~assignedAuthor~assignedAuthor/id~assignedAuthor/addr~assignedAuthor/telecom~assignedAuthor/assignedPerson/name~ All the time the first element is root ...
1
vote
2answers
53 views

XSLT: Check if a node is found in a nodelist

I need to check if a particular value is there in a node list. For now I am using for-each and I think this is not efficient. <xsl:for-each select="$ChildList"> <i><xsl:value-of ...
1
vote
2answers
34 views

Select the attributes of an element that do not have a specified namespace XPath 2.0

Just a quick question: If I have an element say <element a:lol="." a:rofl="." b:lol="." b:rofl="." lol="." rofl="."/> I know I can select all the attributes under namespace a with @a:* How ...
1
vote
2answers
29 views

XPath2 :How to access all documents in a folder?

XSLT2/Xpath2 allow you to open a document using the document() or doc() functions, but you have to specify the filename. Is there a way to open all the documents in a given file folder without ...
1
vote
2answers
31 views

XSLT2 for-each-group: is there a way to reference sequence of representative elements?

Inside a for-each-group statement in XSLT2 the focus changes to a set of representative elements, one from each group. This means that, for example, last() returns the number of groups (because that ...
1
vote
2answers
44 views

XSLT2: How to reference attributes about the current node in XPath2 predicates

I had posted another question with this as one aspect of it. I was told to clarify the question, but that question was already pretty long and complicated, so I created a new one. I want to know if ...
1
vote
3answers
125 views

XPath, getting value of min attribute

SO I've never used XSLT before, and i've only used XPath in it's simplest form. I have a Xml element "Earth" with two attributes Stamina and willpower. Both contain numbers. What I'm trying to do is ...
1
vote
1answer
149 views

How to use XPath 2.0 Methods in .NET 4.0?

I am using .NET 4.0 and I would like to use XPath 2.0 methods such as ([Matches()][1], [upper-case()][2], [lower-case()][3]) when trying to find elements in a document. Example XPath: ...
1
vote
1answer
82 views

XPath: Selecting a node based on another nodes value

I am trying to use a single XPath expression to select a node that has a child node which matches another node in the document. A match would mean that ALL attributes of the node are the same. So ...
1
vote
2answers
71 views

How to get only numbers from string with XPath

I have a string which contains numbers. Is it feasible only with XPath that I get only numbers from it? For example: myString="abcd12ef34gh567", result: 1234567
1
vote
3answers
207 views

Does libxml2 support XPath 2.0 or not?

I've tried to use the XPath 2.0 exp //span/string(.) in libxml2, but it doesn't work. So, my question is: does libxml2 support XPath 2.0 or not?
1
vote
1answer
286 views

Xpath 'Like' operator to find value in html

I have an html page which I would like to run a xPath query against to find any elements which have the id, name etc containing or like a value e.g name = 'tv_11223344' or name = 'tv_11223344'. Been ...
1
vote
1answer
534 views

Finding the difference between 2 dates in xslt

Is there a less then kludgey way of finding the difference in days between 2 dates in xslt? If so can you point me in the right direction. I am receiving dates in the format of mm/dd/yyyy.
1
vote
1answer
268 views

Oracle - Berkeley DB XML Java API - XML query to get attribute values at multiple level

Evaluating Berkeley DB with Java APIs. Following is one of my test XML data: <master> <env name="development"> <server name="tomcat1" ip="122.122.123.1"> ...
1
vote
2answers
106 views

comma operator in xpath, is it like c?

<xsl:variable name="html-output-name" select="(if(@index and @index eq 'true') then concat($default-name, '.html') else (), @html-output-name, ...
1
vote
1answer
286 views

XML Digital Signature created with XPATH keeps adding schema definition to every node

I have a simple XML and i signed the XML using XPATH query like //*[@isDigSignReqd = 'true']. Now, the signed XML contains the attributes like xmlns="http://www.xyze.org/xservice" ...

1 2