I'm trying to match all a/c elements that have a b sibling. I've tried:
<xsl:template match="a/b/../c">
but I get "Cannot convert the expression {..} to a pattern" from Saxon.
My XSLT/XPath skills are basic at best...
|
|
Explanation: match any You should also be able to use
which is similar to what you were trying. The reason you can't use The reason given for the restriction on axes is that (a) other axes are rarely needed in patterns, and (b) this allows XSLT processors to be much more efficient in testing for matches. But predicates in patterns are defined with the same syntax rules as in XPath expressions (with some restrictions in XSLT 1.0, like not allowing variable references or |
|||||||
|
|
This XPath expression seems to do the job (may be not optimal):
Edit: In case LarsH is right, it should be |
|||||||||||
|