xsl-list
[Top] [All Lists]

Re: nearly FAQ .. (numbering of elements)

2004-01-26 08:58:28
Andrew Welch schrieb:

Ok here is my Problem:
I have an xml file, which looks like that:
<my-foo>
        <text1></text1>
        
        <question>[..]</question>
        <question>[..]</question>
</my-foo>

Now I need in my output (an xsl:fo with some special extensions) something like:

Q1 [..]
Q2 [..]


What about:

<xsl:text/>Q<xsl:number/>

Or:

<xsl:value-of select="concat('Q',count(preceding-sibling::question))"/>
Thats an really elegant solution. And with a +1 it does exactly what I want.
Thanks.

Christian
--

"A truly outstanding programmer can find bugs
buried in a 6 megabyte core dump without using a hex calculator"
[http://www.pbm.com/~lindahl/real.programmers.html]


XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>