translate numeric to alphanumeric
Hello everyone,
I need to add alphanumeric values to a list based on their position.
Is there an easy way to do this with xslt 1.0?
Input:
<list>
<li>
<p>text</p>
</li>
<li>
<p>text</p>
</li>
</list>
output
<list>
<li>
<nr>a</nr>
<p>text</p>
</li>
<li>
<nr>b</nr>
<p>text</p>
</li>
</list>
|