I have from XML for example the String "AA" and i need to increment it Like:
AA AB AC AD AE (...) AZ BA BB (...)
For example increment it for 35 times (coming from a varaible called (`xsl:variable name ="NumIncr">)) starting at AA and finishing in BG. The string don't always have "AA" can be any 2 letters...
Any idea to do this?!
I think the <xsl:number>
tag can help, but still the problem to pass from letters to numbers.
Need something like
<fo:table-cell border-collapse="collapse" border-color="gray" font-family="Helvetica" font-size="8pt" border="solid 1pt gray" padding="1pt" display-align="before">
<fo:block text-align="center">
<xsl:value-of select="string($Sequence)"/>
</fo:block>
</fo:table-cell>
Where $sequence is the AA AB AC (...) Can writte evrything in the same cell, the problem isn't the output but the tamplate to increment the AA
HELP!!!