Hi Andrew,

I will give this a try and report back. I have a couple other things
before I get back to this particular project.

Joe

> 
> How about
>             <xsl:attribute name="href">
>                 <xsl:value-of select="substring-before(@name, '.xml')"/>
>             </xsl:attribute>
> ?  Or, if you think the characters ".xml" may appear more than once in the 
> filename (substring-before only looks up to the first occurrence) then maybe
>             <xsl:attribute name="href">
>                 <xsl:value-of select="substring(@name, 1, 
> string-length(@name) - 4)"/>
>             </xsl:attribute>
> would be better?  That assumes you don't also have e.g. any .js files in the 
> directory, though.
> 
> 
> Andrew.



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to