私はこのようなXMLファイルがある場合:XSLTを使用してXMLに繰り返し要素名を追加しますか?
<properties>
<property>
<picture1>http://example.com/image1.jpg</picture1>
<picture2>http://example.com/image2.jpg</picture2>
<picture3>http://example.com/image3.jpg</picture3>
<picture4>http://example.com/image4.jpg</picture4>
<picture5>http://example.com/image5.jpg</picture5>
</property>
</properties>
私は仮定に修正アム:私は、各画像のURL要素は、このようなユニークな場所にそれを変換するに行くかどう
<properties>
<property>
<picture>http://example.com/image1.jpg</picture>
<picture>http://example.com/image2.jpg</picture>
<picture>http://example.com/image3.jpg</picture>
<picture>http://example.com/image4.jpg</picture>
<picture>http://example.com/image5.jpg</picture>
</property>
</properties>
をいくつかの要素に空の値が含まれていても、同じ量の要素が存在する必要があります(画像URLの数はプロパティによって異なります)。
「あなたが____でも同じ量の要素がなければならない...」 – LarsH