How do i transform a number to a repetition of characters in XSLT?
I have the following input: <node TEXT="txt"> <node TEXT="txt"> <node TEXT="txt"/> <node TEXT="txt"/> </node> <node TEXT="txt"/> </node> <node TEXT="txt"/> I am currently using: <xsl:number level="multiple" count="node" format="1"/> within an XSTL script to receive the following output: 1 txt 1.1 txt 1.1.1 txt 1.1.2 ...