Bonjour,

transformer un xml

Origine

<bal1>1;2;3</bal1>
<bal2>a;b;c</bal2>

Résultat à obtenir (1ère template)

<head>
<bal1>1</bal1>
<bal2>a</bal2>
</head>
<head>
<bal1>2</bal1>
<bal2>b</bal2>
</head>
<head>
<bal1>3</bal1>
<bal2>c</bal2>
</head>

Résultat à obtenir (2nde template)

<stringAVP attributeName="bal1">1</stringAVP>
<stringAVP attributeName="bal2">a</stringAVP>
<stringAVP attributeName="bal1">2</stringAVP>
<stringAVP attributeName="bal2">b</stringAVP>
<stringAVP attributeName="bal1">3</stringAVP>
<stringAVP attributeName="bal2">c</stringAVP>


Merci pour votre aide