Re: [xsl] using name() to generate a tag dynamically in xsl output - FOLLOW UP

Subject: Re: [xsl] using name() to generate a tag dynamically in xsl output - FOLLOW UP
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 26 Feb 2010 20:25:53 +0000
On 26/02/2010 19:38, mark bordelon wrote:


"word/../[@s_len&lt;5]"


that is xpath (pattern actually) word/../ filteres by the predicate @s_len&lt;5

but the path is a syntax error as you can't end it with /

I think you mean

match="*[word][@s_len&lt;5]"

ie match an element that has a child element word and an attribute s_len with value less than 5


David


Current Thread