[XSLT] Manipulation d'une String
Bonjour tout le monde, :wink:
Dans un fichier XSLT j'ai défini une variable de ce type:
Code:
<xsl:variable name="Libraries>JBoss-3.2.3;JSuite-7.0;JClass-6.0</xsl:variable>
J'aimerai à partir de cette variable créer le fichier de sortie xml suivant:
Code:
1 2 3 4 5
| <path id="path.local">
<pathelement location="JBoss-3.2.3"/>
<pathelement location="JSuite-7.0"/>
<pathelement location="JClass-6.0"/>
</path> |
Quelqu'un saurait il me dire s'il est possible de manipuler cette variable à partir de mon fichier xsl.
Merci