1
我有一個XML,顯示有看起來像字段值與字段值:XSLT把XML轉換與具有相同標籤的分組值
<data>
<currentRow>
<columnValue>usa</columnValue>
<columnValue>ma</columnValue>
<columnValue>boston</columnValue>
<columnValue>bob</columnValue>
</currentRow>
<currentRow>
<columnValue>usa</columnValue>
<columnValue>ma</columnValue>
<columnValue>boston</columnValue>
<columnValue>george</columnValue>
</currentRow>
<currentRow>
<columnValue>usa</columnValue>
<columnValue>ny</columnValue>
<columnValue>nyc</columnValue>
<columnValue>mary</columnValue>
</currentRow>
</data>
我要生成生產,看起來像一個Xml
<Class>
<Student>
<Country>usa</Country>
<State>ma</State>
<City>boston</City>
<name>bob</name>
<name>george</name>
</Student>
<Student>
<Country>usa</Country>
<State>ny</State>
<City>nyc</City>
<name>mary</name>
</Student>
<Class>
總之,我有兩個問題:
- 我想遍歷當前行生成一個通用的XML
- 我想組在他們所居住的位置,學生姓名,首先在城市上空,然後狀態,然後國家
任何想法,我該怎麼做呢?
您的輸出XML無效。 ' boston '? 「 ...... 」的縮進是否表明它應該在''元素內?請修正輸出XML以顯示您真正想要完成的內容。 –
2012-03-25 23:02:43