Tagged Questions
0
votes
1answer
170 views
Saxon-ce dynamic xpath evaluation
I am trying to evaluate a dynamic xpath using ixsl:eval() in Saxon-ce with xslt 2.0 but does not seem to be working. Here is the illustrative XML
<things>
<thing>
<name>widget ...
1
vote
2answers
96 views
Safest way to extract all variable refs from xpath expression in java
I'm using java and saxon processor.
Let say I have some XPath expression with possible variable refs in it. I also have some custom xpath functions which can be nested to arbitrary depth which can ...
2
votes
2answers
557 views
XSLT 2.0: Find missing elements in a sequence
I need to search for a range of elements based on ID numbers. If the ID number is found, I'll process it. If the ID is not found, it'll get filled in with a default value. I'm using XSLT 2.0 in ...
2
votes
2answers
380 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 ...
3
votes
3answers
747 views