今日もひとつ問題にぶつかりました。book という名前の 1000 個のタグを持つ xml があります。すべてのタグには独自の属性がありますが、一部の属性は重複しています。
だから私はXMLを持っています:
... some other not duplicated attribute data ...
<book attribute="attr1"></book>
<book attribute="attr1"></book>
<book attribute="attr1"></book>
... some other not duplicated attribute data ...
<book attribute="attr2"></book>
<book attribute="attr2"></book>
<book attribute="attr2"></book>
... some other not duplicated attribute data ...
xsltを使用して、xmlにある属性の名前を複数回変更できるようにする方法はありますか:
... some other not duplicated attribute data...
<book attribute="attr1-1"></book>
<book attribute="attr1-2"></book>
<book attribute="attr1-3"></book>
... some other not duplicated attribute data ...
<book attribute="attr2-1"></book>
<book attribute="attr2-2"></book>
<book attribute="attr2-3"></book>
... some other not duplicated attribute data ...
これが xslt で可能であり、重複した属性が変わらないことを願っていますか? すべての回答に感謝します、eoglasi